.val(null) only works in FF and Opera, so I don't think this is a valid use case.
You can disable everything using selectedIndex as such:
$('#selectbox').prop('selectedIndex', -1);
Please note that .prop()only works in jQuery 1.6+, for lower versions you should use .attr().
source
share