I use two jQuery plugins for my site: jquery.selectbox.js and jquery.jscrollpane.js.
selectbox.js turns my selects into the set of divs and jscrollpane.js add custom scroll bars to the content. And I ran into a problem when I put select-box into the jscrollpane. jscrollpane crops everything that outs of its borders – even selectbox dropdown. Can you help me with this?


.jscrollpane, hasoverflow:scrollin css class definition.That’s what breaking your presentation, ’cause wrapper element with defined overflow will not really allow child elements to exceed it’s own dimensions.
You may try to set the
positionproperty of your select box toabsolutewhen dropdown appears, but you’ll have to mess with calculation of element’s position relative to document, in order to have it at right place.