mojoeJohn,

You have an extra trailing comma in "speed: 4000,", which is
definitely going to give you trouble in IE.  IE is less forgiving of
JS syntax errors than, for example, FF.

You might find this useful:  http://www.jslint.com/

Hope that helps.

Mark


IE is (rightfully) less forgiving of syntax errors in JS.

On Oct 22, 3:57 pm, mojoeJohn <mojoej...@gmail.com> wrote:
> jquery isn't loading right in IE 6 & 7 onhttp://centermassshootingschool.com/
>
> you can look at the source code, but essentially this is where the
> problem is ...
>
> <script type="text/javascript">
>   $(document).ready(function(){
>     $("#tabs").tabs({fx:{opacity:'toggle'}});
>         $('.slideshow').cycle({
>                 fx:'fade',
>                 speed: 4000,
>         });
>   });
> </script>
>
> when you take away
>
> $('.slideshow').cycle({
>                 fx:'fade',
>                 speed: 4000,
>         });
>
> then everything works fine.
>
> It works fine in all other browsers. How do i fix this?

Reply via email to