jquery chosen not showing the selection option in dropdown -


when jquery chosen's height adjusted using code

.chosen-results {     height: 82px; } 

it not calculates height correctly , when u select options inside using keyboard, options not shown. how can fix it?

jsfiddle: http://jsfiddle.net/umcc9/6/

steps:

1) click on select box 2) click down key multiple times 3) when val-4 highlight, not visible in container 

ok found solution need set max-height

.chosen-results {     max-height: 82px; } 

Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -