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:

Operating system - Part 1:

 In our blog, we published several articles on OS concepts which mostly on the perspective for malware analysis/security research. In few in...