jquery - How can I redirect to specific URL on select change? -


i have dropdown-menu auto populate base on ajax call. want redirect specific url on select change.


jquery

// auto populate dropdown-menu $("#dd").append('<option value="' + userid + '"> <a href="">' + name + '</a></option>'); 

thanks

would recommend reading html tags.

<select id="myselect" onchange="myfunction()">  function myfunction() {   //redirect url  } 

ready more @ onchange event, javascript window location

cheers !


Comments