Jump to content

onchange


crouchjay

Recommended Posts

<SELECT "cars" onchange="window.location='cars.php?sort=value'">
<OPTION value="ford">ford</OPTION>
<OPTION value="toyota">toyota</OPTION>
</SELECT>

I am trying to pass the selected value through. I have tried the search attribute of location, but that was false. I am really stumped. Thanks.
Link to comment
Share on other sites

[!--quoteo(post=371018:date=May 3 2006, 03:11 PM:name=crouchjay)--][div class=\'quotetop\']QUOTE(crouchjay @ May 3 2006, 03:11 PM) [snapback]371018[/snapback][/div][div class=\'quotemain\'][!--quotec--]
<SELECT "cars" onchange="window.location='cars.php?sort=value'">
<OPTION value="ford">ford</OPTION>
<OPTION value="toyota">toyota</OPTION>
</SELECT>

I am trying to pass the selected value through. I have tried the search attribute of location, but that was false. I am really stumped. Thanks.
[/quote]
[code]
<form name="form" action="cars.php" method="get">
<SELECT name="sort" onchange="document.form.submit();">
<OPTION value="ford">ford</OPTION>
<OPTION value="toyota">toyota</OPTION>
</SELECT>
</form>
[/code]
Link to comment
Share on other sites

[!--quoteo(post=371026:date=May 3 2006, 09:22 PM:name=lead2gold)--][div class=\'quotetop\']QUOTE(lead2gold @ May 3 2006, 09:22 PM) [snapback]371026[/snapback][/div][div class=\'quotemain\'][!--quotec--]
[code]
<form name="form" action="cars.php" method="get">
<SELECT name="sort" onchange="document.form.submit();">
<OPTION value="ford">ford</OPTION>
<OPTION value="toyota">toyota</OPTION>
</SELECT>
</form>
[/code]
[/quote]
Is there a way to do it with out the form since I already have I form? I don't want everything submitted.
Link to comment
Share on other sites

  • 3 weeks later...
Just add the this.value to the url like this

[code]
<SELECT "cars" onchange="window.location='cars.php?sort='+this.value">
<OPTION value="ford">ford</OPTION>
<OPTION value="toyota">toyota</OPTION>
</SELECT>
[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.