jonathanphz
11/6/2014 - 7:30 PM

Use option value in select element to go to a URL. Replace "catUrl" with select name value.

Use option value in select element to go to a URL. Replace "catUrl" with select name value.

jQuery(function(){

   jQuery('select[name="catUrl"]').change(function() {
    window.location.replace($(this).val());
  });

});