How to get the server date not the local system date in javascript
Language: javascript, jsp
Code:
function myFunction(){
var today_Date = new Date();
alert('Today is:'+today_Date);
}
output alert always showing the local system date...how to get the serverDate ? i am using the javascript in my jsp page.