Jump to content

How to get current date and time


Recommended Posts

You can get current date and time in the text field after clicking on the button. In that case, you need to use the following Java Script code:

<!doctype html>
<html>
<head>
    <title>Timestamp function</title>

 <script>
   var time = new Date();
   function GetDateTime() {
        document.getElementById('MyTextField').value=time;
   }
</script>

</head>
<body>

<input type='text' id="MyTextField" value=""> 
    <button  onClick="GetDateTime()">Get Current date and time</button>
</body>
</html>

 

Link to comment
Share on other sites

  • 2 months later...
  • 4 years later...
  • 2 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...