//selectbox jumpurl $(document).ready(function () { /* * Automatically go to the choosen page on select change */ $('select[rel=goToPage]').bind('change', function () { if ($(this).val() != "") { if($(this).hasClass('open-in-blank')) { window.open($(this).val(), '_blank'); } else { window.open($(this).val(), '_self'); } } }); });