Go Back   HTMLCenter Web Development Forums > Web Design and Development > Programming and Scripting

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
  #1 (permalink)  
Old 04-15-2005, 04:34 PM
Registered User
 
Join Date: Apr 2005
Posts: 8
Submit Button Redirect

I'm stupid - but you already know that - I have a site with a submission buttion for an html form - i need people to be redirected to another page once they click the submit button... any ideas?
Reply With Quote

  #2 (permalink)  
Old 04-21-2005, 12:14 PM
Till's Avatar
Administrator
 
Join Date: Jan 2002
Location: Berlin, Germany
Posts: 1,453
I moved your thread.

But anyway:

Code:
<form action="the_other_page.html">
<input type="submit" value="go">
</form>
Hope this helps!
Reply With Quote
  #3 (permalink)  
Old 04-21-2005, 01:08 PM
Registered User
 
Join Date: Jun 2004
Location: Ann Arbor, MI, USA
Posts: 73
Send a message via ICQ to \Kritikal\ Send a message via AIM to \Kritikal\
The above code will work, however, sometimes it's not possible if you've already opened a form element, since nesting of forms is not possible. Below is another method that uses javascript and does not require a form element. I'm in no way knocking what Till posted, just providing an alternative.

Code:
<input type="button" value="go" onclick="document.location = 'page_to_goto.html';">
__________________
-\Kritikal\-
Reply With Quote
  #4 (permalink)  
Old 05-06-2005, 05:10 PM
Registered User
 
Join Date: May 2005
Location: Madison, Wisconsin
Posts: 3
Thumbs up Thanks, Kritikal!

Kritikal,

Thanks for the example JavaScript code for the Submit button redirect. It was just what I needed and works great.

stanton
Reply With Quote
Reply


Thread Tools
Display Modes 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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT -5. The time now is 04:44 AM.

 
KickApps
Clicky Web Analytics


Subscribe to our feed | add to myYahoo!

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.2.0
© 1997-2007 HTMLCenter