Reputation: 1
I've been trying to add a auto-suggest drop down menu using jQuery. Everything is working fine. I tried to add a scroll bar using CSS (overflow) the scroll bar shows up but when I try to scroll down the options, the drop down list disappear as I click on the scroll. Also, the scroll doesn't move the screen when I try to move it using the arrow keys. Everything works fine in Firefox but not in Chrome. Any suggestion?
http://www.bylc.org/apply-bblt "Current / Last Attended Institution:" Part!
Upvotes: 0
Views: 517
Reputation: 12025
In the form_manager.js file try to place the jQuery.fn.autocomplete and jQuery.fn.autocompleteArray and jQuery.fn.indexOf functions inside a
(function($){
<your functions>
});
Upvotes: 0
Reputation: 1337
Uncaught TypeError: Object #<Object> has no method 'autocompleteArray'
prevents running the script.
Upvotes: 1