try this:

put the following code in your css:

* {
 margin: 0;
 padding: 0;
}

if it doesnt jump anymore (although your layout might break), you know
where your problem is :)

On Feb 27, 6:44 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote:
> Hey Dan,
>
> Take a look at this page in IE6 - -click the red link "Read final clearance
> return policy" -- you'll see the nasty 
> artifacts:http://www.igigi.com/plus-size-clothing/Plus-Size-Final-Clearance.html
>
> The code uses slideToggle:
>
> $(document).ready(function() {
>      var blk = $("#clearpol"), lnk = $("#clearpol_link");
>      blk.hide();
>      lnk.click(function() {
>           blk.is(":visible")
>                ? lnk.text('Read Final Clearance Return Policy')
>                : lnk.text('Hide Final Clearance Return Policy');
>           blk.slideToggle();
>      });
>
> });
>
> -- Josh
>
> ----- Original Message -----
> From: "Dan G. Switzer, II" <[EMAIL PROTECTED]>
> To: <jquery-en@googlegroups.com>
> Sent: Wednesday, February 27, 2008 5:32 AM
> Subject: [jQuery] Re: slideUp, slideDown artifacts
>
> >>yes me too, its good in FF but bad in IE7 and IE6
>
> >>I'm using jQuery v.1.2.3
>
> > If you can post a simple working example of code with the problem, I'll
> > look
> > to see if there's a work around. I was doing a lot of examination of the
> > fx
> > library over the weekend and I think I might have an idea of the root
> > cause.
>
> > -Dan

Reply via email to