Friday, November 22, 2013

Javascript to display date and time:

The following script will display date and time:

<script>
function displaydate()
{
document.getElementById("s").innerHTML=Date();
}
</script>

In the html page, you can add this code inside the html code. If you want add a button, by clicking that button it will display the current date and time, you can use the id. Here, i mentioned getElementById ("s"). Same way you can use whatever variable in that place.
<p id="s"></p>

<button type="button" onclick="displayDate()">Display Date</button>


Try this out. You will get the result.

Post by
newWorld

No comments:

How CPUs Interact with So Many Different Devices: A Complete Guide for 2025

The CPU (Central Processing Unit) still sits at the heart of every computing device, but in 2025, it must communicate with a vast and ever-e...