An annoying IE position: Relative and OverFlow-Y Bug
Posted by: Rick Strahls WebLog,
on 11 May 2009 |
View original | Bookmarked: 0 time(s)
A few weeks ago I posted a closable plug-in for jQuery and Ive been using it in a number of places for list based close operations. It works well in most but I ran into an apparently known problem with Internet Explorer (pre IE8 Standards Mode). The closable plug-in works by injecting either an image or a styled div tag into the specified element and absolutely positioning it typically in the upper right corner. The relevant code does something like this: var el = $(this);
var pos = el.css("position");
if...