These lines in jquery make me bad:
var selectBoxContainer = $('<div>',{width: select.outerWidth(), className:'styledSelect', html:'<div class="selectBox"></div>'}); var dropDown = $('<ul>',{className:'dropDown'});
It should set the class attribute "class =" styledselect "in the output, but the attribute name is" classname ":
<div classname="styledSelect"> <ul classname="dropDown" style="display: none;">...</ul> </div>
when I change it just to {class:'dropDown'} ist works in firefox, but not in other browsers.
help me please...
source share