Compare Page Revisions
« Older Revision - Back to Page History - Newer Revision »
Date.prototype.getMonthName = function() { var monthNames = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November','December']; return monthNames[this.getMonth() - 1]; } Date.prototype.toFormat = function(formatCode){ var MMMM = this.getMonthName(); var MMM = MMMM.substr(0, 3); var M = this.getMonth(); var MM = (M < 10 ? "0" : "") + M; var d = this.getDate(); var dd = (d < 10 ? "0" : "") + d; var yyyy = this.getFullYear(); var yy = (yyyy + "").substr(2,2); var result = formatCode; result = result.replace("MMMM", MMMM); result = result.replace("MMM", MMM); result = result.replace("MM", MM); result = result.replace("M", M); result = result.replace("dd", dd); result = result.replace("d", d); result = result.replace("yyyy", yyyy); result = result.replace("yy", yy); return result; }
ScrewTurn Wiki version 3.0.1.400. Some of the icons created by FamFamFam. Except where noted, all contents Copyright © 1999-2024, Patrick Jasinski.