[jQuery] Re: Problem with IE6/7 show/hide and relative positioned elements below

2008-05-15 Thread kareneliot

If anyone is interested... and I don't think they are, I have worked
out a workaround: you simply turn it on and off again. Sort of.

At the end of your jQuery custom script, simply show and hide the
affected elements and they kind of reset and everything seems to be in
the correct place.

Therefore, as it only affects IE6/7, i did this...

if (jQuery.browser.msie) {
   $("#contentfeed").hide(1, function () {
  $("#contentfeed").show(1);
   });
}

Hopefully that will be useful to someone.


[jQuery] Re: Problem with IE6/7 show/hide and relative positioned elements below

2008-05-08 Thread kareneliot

I hate to bump this, but if anyone has any fixes for this, that would
be great...?


[jQuery] Re: Problem with IE6/7 show/hide and relative positioned elements below

2008-05-06 Thread kareneliot

http://fox-land.co.uk/clients/test/test.png shows the bug in IE6/7
after the elements have been hidden.