function updatingClock(selector, type) {
function currentDate() {
var currentDate = new Date;
var Day = currentDate.getDate();
if (Day < 10) {
Day = '0' + Day;
} //end if
var Month = currentDate.getMonth() + 1;
if (Month < 10) {
Month = '0' + Month;
} //end if
var Year = currentDate.getFullYear();
var fullDate = Month + '/' + Day + '/' + Year;
return fullDate;
} //end current date function
function currentTime() {
var currentTime = new Date;
var Minutes = currentTime.getMinutes();
if (Minutes < 10) {
Minutes = '0' + Minutes;
}
var Hour = currentTime.getHours();
if (Hour > 12) {
Hour -= 12;
} //end if
var Time = Hour + ':' + Minutes;
if (currentTime.getHours() <= 12) {
Time += ' AM';
} //end if
if (currentTime.getHours() > 12) {
Time += ' PM';
} //end if
return Time;
} // end current time function
function updateOutput() {
var output;
if (type == 'time') {
output = currentTime();
if ($(selector).text() != output) {
$(selector).text(output);
} //end if
} //end if
if (type == 'date') {
output = currentDate();
if ($(selector).text() != output) {
$(selector).text(output);
} //end if
} //end if
if (type == 'both') {
output = currentDate() + ' at ' + currentTime();
if ($(selector).text() != output) {
$(selector).text(output);
} //end if
} //end if
}//end update output function
updateOutput();
window.setInterval(function() {
updateOutput();
}, 1000); //run update every 1 second
} // end updating clock function
updatingClock('#date-time', 'both');
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Console
Debug your Fiddle with a minimal built-in JavaScript console.