What would be the best way to attach an event so on change of a select option a URL. Store the href in an attr and grab it on change?
It is pretty simple, let's see a working example:
$(function() {
// bind change event to select
$('#dynamic_select').on('change', function() {
var url = $(this).val(); // get selected value
if (url) { // require a URL
window.location = url; // redirect
}
return false;
});
});
.
on with bind..