Jump to content

update url on option select


Jocka

Recommended Posts

My code works for the most part but heres the problem with it. I tried to set it so if there's a "?" in the url then it adds a "&state=whatever" otherwise it'll say "?state=whatever".

Well the problem lies here. It's NEVER "?state=whatever" and it wasn't until later that I realized I need to check to make sure "state" isn't in the url either and if it is to update the variables. .. this is so much easier in PHP lol.. Any help? this is what I have so far (which does about 30% of the task).

(slashes added so I could post the code)
[code]
<//script language="javascript"//>
<!--
function goto(){
var index=document.forms['search'].state.options[document.forms['search'].state.selectedIndex].value;
var url=document.location.href;
if(url.match("/\?/ ")){
window.location.href=url+"&"+"state="+index
}
else
{
window.location.href=url+"?"+"state="+index
}
}
//-->
<//script//>
[/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.