I currently have this within my JavaScript code:
<html>
<head>
<title>
Form
</title>
<script type="text/javascript">
var input = document.getElementById('textbox');
function namet()
{
alert(textbox.value);
}
var input2 = document.getElementById('location');
function namet2()
{
alert(location.value);
}
</script>
</head>
<body>
Your name:
<input type="text" name="FirstName" id="textbox" <br><br/>
Your Address:
<input type="text" name="address" id="location" <br></br>
click:
<input type="button" value="submit" onclick="namet()"/>
</body>
</html>
...and was looking for a way to gather what the user types within the text box and shows them as in a single alert box when they click on the "Click" button, sort of like a confirmation.
Additionally it would also be helpful to find out how to redirect them to a different page after clicking OK on the alert box.
Thank you.