iddo
iddo

Reputation: 639

Redirect to URL upon drop down menu selection

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

Answers (2)

Mudassir Hasan
Mudassir Hasan

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

David Hedlund
David Hedlund

Reputation: 129792

$('#your-select').change(function() {
   location.href = 'newURL';
});

Upvotes: 3

Related Questions