views:

29

answers:

1

I have problem with Autocomplete, it works well in all browsers except for IE. I have it positioned inside <td> (and <tr> and <table> of course) that is inside <div> that has CSS like this:

left: 10px; top: 400px; position: absolute; width: 350px; 

none of its parrent elements have position/width modified in any way.. Yet when I type into the input that is autocompleted the selection list appears right under lower edge of the screen (no matter where that is in relation to input element).

Don't know if this has some inpact but the input and it's parrent <div> are hidden and shown dynamically (using prototype).. jQuery is used by using var $j = jQuery.noConflict().

Do you have any idea how to fix this issue?

A: 

Your question seems a bit vague but I'll just point out that when absolutely positioning an element within another element the parent element must be relatively positioned.

Michael