I just starting using jRails and the jRails auto_complete helper
http://github.com/evilmarty/jrails_auto_complete
I was using the default auto_complete helper before using prototype and the drop in worked fine with jRails except for hovering over the results of the autocomplete. If you use simple text for the result, it works as advertised. But I've been using several divs in my partial which generates the output for the autocomplete.
<li class="location"><div class="image"><img src="/images/flags/<%=h image %>.png"/></div><div class="name"><%=h location.keyword %>,</div><div class="country"> <%=h location.sideinfo %></div></li>
It looks the same and all the CSS works and looks the same as before, but the selection or hovering over the results is messed up. It only allows selection if you hover over the background around the text... anything in a tag, (div, span, etc.) causes the hover the go away and clicking it doesn't add the text to the textbox.
Has anyone else had similar problems?