0

I am working on a site and it works/looks great in Safari, Firefox, Chrome and IE8. For some reason when testing it in IE 6 and 7 the jQuery does not work (the images are there but static) I get the following error message:

Internet Explorer Script Error. Line: 38 Char: 1 Error: Expected Identifier, string or number Code: 0

Can someone help me out with this? Internet Exploder is killing me....

www.telechoiceinc.com

2
  • this is the url: www[dot]telechoiceinc[dot]com Commented Jun 8, 2010 at 16:28
  • 3
    You need to post the script that invokes your Cycle plugin, my guess is though you have an errant , in a config object somewhere. Commented Jun 8, 2010 at 16:28

1 Answer 1

3

As i speculated above... you have trailing commas in your config objects. see my comments below.

$('#ourClientsRight').cycle({
        fx: 'fade',
        speed: 600,
        timeout: 4000,
        delay: 1000, // this comma should not be here
});
        $('#ourCarriers').cycle({
        fx: 'scrollRight',
        speed: 600,
        timeout: 7000,
        delay: 1000, // this comma should not be here
});
Sign up to request clarification or add additional context in comments.

1 Comment

Thank you for your help! It is all working now... often the smallest thing (a comma) breaks everything! Cheers!

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.