jQuery UI autocomplete scrollbar problem with IE
I have a probleme with jquery.ui.autocomplete and scrollbar in IE9 or IE10 with the following CSS:
- .ui-autocomplete
- {
- max-height: 250px;
- overflow-y: auto;
- /* prevent horizontal scrollbar */
- overflow-x: hidden;
- /* add padding to account for vertical scrollbar */
- padding-right: 20px;
- }
If i click on the scroll bar to see the end of the list, it selects an element instead of scrolling down.
This doesn't happen in FF or Chrome.
I'm using jQuery UI Autocomplete 1.9.2 and jQuery 1.9.1
Can anyone help?
Thanks Chris