Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm running around in circles trying to figure out why I can't get jQuery Cycle to work in our Amazon store. jQuery seems to be working fine, as I can run commands from the console, but any time I try to call .cycle(), i get a "*.cycle() is not a function" error. I've used cycle on several other websites with no problems, but this has completely confounded me.

Here's a link to a very basic test page with a Cycle instance that I can't get to work: http://www.st-amz.com/content/Slideshow.htm

Amazon's code is a complete mess, so it could have something to do with stuff on the page being non-compliant, I don't know. ANY help would be appreciated.

share|improve this question

2 Answers

up vote 1 down vote accepted

Your script tag is pointing to the wrong URL:

http://www.st-amz.com/content/images/jquery.cycle.min.js

But cycle is located off your root:

http://www.st-amz.com/images/jquery.cycle.min.js

So change the script tag to use a root-relative path and it should work as expected:

<script src="/images/jquery.cycle.min.js" type="text/javascript"></script>
share|improve this answer
Wow, that's an even more frustrating typo than hunting for a missing semicolon in PHP! Thanks for finding that for me. I could have sworn it was pointing to the right path. – Tim Mackey Aug 18 '10 at 20:41

The path to your cycle plugin isn't correct, this results in a 404:

<script type="text/javascript" src="images/jquery.cycle.min.js"></script>

Looks like this isn't the right URL:

http://www.st-amz.com/content/images/jquery.cycle.min.js
share|improve this answer
Wow, that's an even more frustrating typo than hunting for a missing semicolon in PHP! Thanks for finding that for me. I could have sworn it was pointing to the right path. – Tim Mackey Aug 18 '10 at 20:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.