Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 11-08-2004, 12:02 PM   PM User | #1
natils
New Coder

 
Join Date: Sep 2004
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
natils is an unknown quantity at this point
Simply to redirect form content on Another Page

The below script doesnt let me display the contents of the form to another page can someone suggest a wa y to redirect the contents as suggested to open in another page after the submit button is pressed .... help much appreciated

<html>

<head>
<title>[No Title]</title>
<script language="JavaScript">
<!--

function checkRequired(theForm)
{
var bMissing = false;
if ( 0 == theForm.textField.value.length )
bMissing = true;

if ( 0 == theForm.dropMenu.selectedIndex )
bMissing = true;

if ( bMissing )
{
alert( "All form fields are required.\n"
+ "Please complete them and Submit again.");

return false;
}
else
{
return true;
}
}

//-->
</script>
</head>

<body>

<form>

<p>Name : <input type="text" name="textField" size="20"><br>
Address : <input type="text" name="textField" size="20"><br>
Phone : <input type="text" name="textField" size="20"><br>

<select size="1" name="dropMenu">
<option selected value>Select One</option>
<option value="1">Male</option>
<option value="2">Female</option>
</select><br>

<input type="submit" value="Submit" name="submit"> &nbsp;
<input type="reset" value="Reset" name="reset"></p>

</form>

</body>

</html>
natils is offline   Reply With Quote
Old 11-08-2004, 06:16 PM   PM User | #2
Roy Sinclair
Senior Coder

 
Join Date: Jun 2002
Location: Wichita
Posts: 3,880
Thanks: 0
Thanked 0 Times in 0 Posts
Roy Sinclair will become famous soon enough
Your <form> tag needs an "action" property specifying the name of the page you want to load next.
__________________
Check out the Forum Search. It's the short path to getting great results from this forum.
Roy Sinclair is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 12:14 PM.


Advertisement
Log in to turn off these ads.