Shoutbox

getMinutes() help :( - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: getMinutes() help :( (/showthread.php?tid=92361)

getMinutes() help :( by m0nst3rkill3r on 09-25-2009 at 06:12 PM

Hey.
I Need help :D
I try to get the date, with the "getMinutes() " but it goes 01234567891011
i need the time with 00 01 02 03 04... How can i get it?

greetings


RE: getMinutes() help :( by matty on 09-25-2009 at 07:13 PM

Javascript code:
function getMins ()
{
    var minutes = new Date().getMinutes();
    return (minutes<10?'0':'')+minutes;
}


Like that?
RE: getMinutes() help :( by m0nst3rkill3r on 09-25-2009 at 07:33 PM

Yepp Thank you :D