[jQuery] Autocomplete error in MSIE (Object doesn't support this property or method)
Howdy! I'm getting the following error in MSIE 7 using the
Autocomplete plugin from bassistence.de:
Line: 683
Char: 17
Error: Object doesn't support this property or method
Code: 0
This being IE, it's wrong about the line number, and it's actually
line 682 that has the error.
682: list.scrollTop(0);
This works fine in FF2 and Safari. I can prevent the error in IE by
replacing this line with:
if (list.scrollTop)
list.scrollTop(0);
I don't have enough search results to see what happens when enough
search results are returned to create a scrollbar.
Anyone else seeing this?