I want to prevent a select box from being changed if a certain condition applies. Doing this doesn\'t seem to work:
$(\'#my_select\').bind(\'change\', funct
$('#my_select').bind('mousedown', function (event) { event.preventDefault(); event.stopImmediatePropagation(); });