[jQuery] Re: unwanted delay with css()

2009-05-01 Thread bluejohn
o i would use the following jquery > > $("#id").animate({ height:"0!important", width:"0!important", > overflow:"hidden!important", fontSize:"0!important" } 0 ); > > if you animate with the value of 0 it reaches its' end

[jQuery] unwanted delay with css()

2009-05-01 Thread bluejohn
Hi, I'm running an A/B test using a 3rd party javascript testing app. I'm loading the jquery script with the tool. $(document).ready(function(){ $(".cartInStock").css({display : " none "}); }); The problem is that the original CSS displays (what I want to hide) while the page is

[jQuery] IE 6 and prepend()

2009-04-02 Thread bluejohn
hi, ie6 doesn't desplay the div specified in prepend() but Firefox does. The .css() works fine. $(document).ready(function(){ $('.listProdImage').prepend('
'); $('img.imageBorder').css({'border':'1px solid #3A91CE'}); }); Any sugge

[jQuery] IE 6 and prepend()

2009-04-02 Thread bluejohn
Hi, I IE6 doesn't prepend the html I specify below but firefox works fine. The css() works fine. $(document).ready(function(){ $('.listProdImage').prepend('
'); $('img.imageBorder').css({'border':'1px solid #3A91CE'}); }); Any suggestions