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
https://forums.phpfreaks.com/topic/27402-update-url-on-option-select/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.