You can try ...
1. changing $('p.sc1').css('top','60px'); to $('p.sc1').css({top:60}); and
2. going up to jQuery v1.1.4


Dragondz wrote:
> 
> 
> Hi everyone
> 
> I made a recent website and add it some very simple javascript
> features using Jquery (I am glad to tells you that Jquery had been
> chosen by Textpattern CMS dev team to be the standard javascript
> library).
> 
> here is the code:
> 
> <script type="text/javascript">
>     $(document).ready(function() {
>     $('p.sc1').animate({top: -60}, 8000);
>     setInterval(sc, 10000);
>     });
>     function sc(){
>     $('p.sc1').css('top','60px');
>     $('p.sc1').animate({top: 0}, "fast");
>     $('p.sc1').animate({top: -60}, 8000);
>     };
> </script>
> 
> the page is here: www.viesdevilles.net
> 
> thanks
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Code-work-under-FF-but-not-under-IE6-tf4392614s15494.html#a12526023
Sent from the JQuery mailing list archive at Nabble.com.

Reply via email to