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 03-09-2005, 06:58 AM   PM User | #1
goomba Jon
New to the CF scene

 
Join Date: Mar 2005
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
goomba Jon is an unknown quantity at this point
change form action on the fly?

is there any way to change the action field in a form on the fly based on a button pressed? if so how can this done?

<form>
<input type="submit" name="yahoo" value="yahoo" onclick=this.form.action.value='yahoo.com';this.form.submit();>
<input type="submit" name="google" value="google" onclick=this.form.action.value='google.com';this.form.submit();>
</form>

i am aware there that most people use form processing scripts, but doing this begins to cause alot of problems and doesnt follow the rules of the fusebox methodology i am using.

thanks!
goomba Jon is offline   Reply With Quote
Old 03-09-2005, 07:13 AM   PM User | #2
nicora
New to the CF scene

 
Join Date: Mar 2005
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
nicora is an unknown quantity at this point
isn't it just

document.forms[0].action = "index.cfm";
or
this.form.action = "index.cfm";
nicora is offline   Reply With Quote
Old 03-09-2005, 08:02 AM   PM User | #3
glenngv
Supreme Master coder!


 
glenngv's Avatar
 
Join Date: Jun 2002
Location: Los Angeles, CA Original Location: Philippines
Posts: 10,241
Thanks: 0
Thanked 112 Times in 111 Posts
glenngv will become famous soon enough
You don't have to submit it as the button is already a submit button.
Code:
<form>
<input type="submit" name="yahoo" value="yahoo" onclick="this.form.action.value='http://www.yahoo.com';" />
<input type="submit" name="google" value="google" onclick="this.form.action.value='http://www.google.com';" />
</form>
If you are really submitting to an external site, you need to put http://
__________________
Glenn
_____________________________________________
Play Tower of Hanoi Android app (Ad-FREE!)
Play Tower of Hanoi Android app (FREE!)
Go to Tower of Hanoi Leaderboard
Play Tower of Hanoi Facebook app
glenngv 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 05:52 PM.


Advertisement
Log in to turn off these ads.