I want to display only Day, Date, Time. Now it displays:
Actually I want to display like:
How to remove --- "(India Standard Time)"
Used code below:
<html>
<head>
<title>(Type a title for your page here)</title>
<script type="text/javascript">
function display_c() {
var refresh = 1000; // Refresh rate in milli seconds
mytime = setTimeout('display_ct()', refresh)
}
function display_ct() {
var strcount
var x = new Date()
document.getElementById('ct').innerHTML = x;
tt = display_c();
}
</script>
</head>
<body onload=display_ct();>
<span id='ct'></span>
</body>
</html>