date with time in jquery code example
Example 1: how to get the computer date and time jquery
var dt = new Date();
var time = dt.getHours() + ":" + dt.getMinutes() + ":" + dt.getSeconds();
document.write(time);
Example 2: how to get the computer date and time jquery
new Date($.now());