I am creating a pulldown menu that pushes the user to a selected url. In the list i have several values that are set at 0 which i use for headers in the list. I have set them to 0 so they do nothing.
This works for the first one in the list which has a value of 0 but the others that do have a value of 0 still redirects the browser to a new website with the same domain and /0 at the end? What am i missing?
<select onchange="if (this.selectedIndex > 0) document.location.href=this.value;">
<option value="0" selected="selected">More...</option>
<option value="0">----- Locations -----</option>
<option value="http://www.location1.com/">location1</option>
<option value="http://www.location2.com/">location2</option>
<option value="http://www.location3.com/">location3</option>
<option value="0">----- Other Locations -----</option>
<option value="http://www.olocation1.com/">olocation1</option>
<option value="http://www.olocation2.com/">olocation2</option>
<option value="http://www.olocation3.com/">olocation3</option>
</select>
change your code to:
demo: http://jsfiddle.net/pratik136/kWHXX/
Why?
Your code:
was checking for the
indexof the selectedoptionin the list. Now because list indices start from0, you were getting expected results when the first (or 0th index) item was selected. But all other items passed theselectedIndex > 0test and got redirected.using
basically checks for the
valueof the selectedindex, and if thevalue !== '0', it redirects to it.