Open johanroug opened 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…)
Thanks stef157, you just saved my project
Thank you "stef157". It really helped,
Thanks a lot!
not working with jquery 1.9