revsystems / jQuery-SelectBox

A modern replacement for the traditional select element. Increases flexibility and stylability.
http://plugins.jquery.com/project/jquery-sb
Other
72 stars 16 forks source link

not working with jquery 1.9 #51

Open johanroug opened 11 years ago

johanroug commented 11 years ago

not working with jquery 1.9

stef157 commented 11 years ago

change this $("html").live('mousedown', function(e) { e.stopPropagation();
$("select").selectbox('close'); }); by this : $("html").on('mousedown', function(e) { e.stopPropagation();
$("select").selectbox('close'); }); And it should work (not teste with other option than default…)

mortocks commented 10 years ago

Thanks stef157, you just saved my project

abdulbasitnawab commented 9 years ago

Thank you "stef157". It really helped,

mobasoft commented 9 years ago

Thanks a lot!