Reputation: 639
I'm true newbie so please bear with my stupid question. I have a multi-stage questionnaire and I want to exempt users from pushing a "next" button every time they make a selection. Can someone please share with me a script that redirects users to a URL upon selection (regardless of the actual selection they have made)?
Thanks!
Upvotes: 1
Views: 302
Reputation: 28751
<select name="menu" onChange="window.document.location.href=this.options[this.selectedIndex].value;" value="Choose">
<option value="http://www.url.com">Option 1</option>
<option value="http://www.url.com">Option 2</option>
</select>
Upvotes: 2
Reputation: 129792
$('#your-select').change(function() {
location.href = 'newURL';
});
Upvotes: 3