I have two text fields in a form and a submit button. When the user clicks on in it must show a box message, containing the information user has provided and the current time.
How can I do this? Keep in mind that I'm a beginner with JavaScript.
|
I have two text fields in a form and a submit button. When the user clicks on in it must show a box message, containing the information user has provided and the current time. How can I do this? Keep in mind that I'm a beginner with JavaScript. |
|||||
|
|
You mean something like this?
|
|||
|
|
|
You could do something like the following ( if your elements have id's on them ):
|
|||
|
|
|
You can include a javascript file in your solution/html file and add a function that employs document.getElementById('nameofyourtextbox').value to retrieve the value and then use an alert box to display the values provided and then add the date in. This function can then be called on the onclick event of your button. example:
Add the function to the onclick event of your button:
To add the .js file to your page:
The src attribute must be the path to where your .js file is stored. |
||||
|
|