Hello! I'm using jQuery to build a form dynamically. Here's how it works:
You are presented with an input box. When you focus on the box a dropdown list appears that you can click on in order to insert the chosen option into the input box, or you can use the keyboard arrow buttons to select your choice. When you move to the next input box the page makes a call via AJAX to grab information for the input box based on the previous selection. The problem is that the ".hover()" function doesn't seem to work with the information that has been pulled into the document using jQuery (it works fine with the first list). The items that are pulled in are all list items (<li>{name}</li>). Using keystrokes works on the items, just not mouse gestures. Would this be a jQuery bug or is there something I can do? Many thanks, Charles