Created
January 2, 2012 00:24
-
-
Save ashic/1548777 to your computer and use it in GitHub Desktop.
jquery-dateFormat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var date = getDate(); | |
var format = 'dd-MM-yyyy hh:mm:ss'; | |
var formattedDate = $.format.date(date, format); | |
alert(formattedDate); //alerts 02-01-2012 12:23:41 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment