Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

/

Javascript to convert date to mm/dd/yyyy format
Friday, 27 January 2012 10:59
// Javascript to convert date to mm/dd/yyyy format



function GetFormattedDate() {
var todayTime = new Date();
var month = format(todayTime .getMonth() + 1);
var day = format(todayTime .getDate());
var year = format(todayTime .getFullYear());
return month + "/" + day + "/" + year;
}

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/d2nB0fBa8rs/14485

 


Taxonomy by Zaragoza Online