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 am putting a common garden variety cycle slideshow on this page: http://www.orientalhealthsolutions.com/index-new. For some reason the images don't overlap like they do here in my test configuration: http://www.orientalhealthsolutions.com/cycle.html

Here is the html:

<div class="slideshow">
    <img src="/photos/slideshow-1.jpg" alt="slideshow-1" width="600" height="410" />
    <img src="/photos/slideshow-2.jpg" alt="slideshow-2" width="600" height="410" />
</div>

Here is the jQuery:

$('.slideshow').cycle({
   fx: 'fade' 
}); 

Here is the CSS:

.slideshow  { 
    width: 600px; 
    height: 410px; 
    overflow: hidden;  
    }

I get an error message that $ is not a function, so I either have a conflict or I've messed something else up. Any mentoring-guidance would be appreciated.

Thanks.

share|improve this question

1 Answer

up vote 1 down vote accepted

Yeah looks as though you have a conflict going on with something.

In chrome: console.log($) is undefined, where as console.log(jQuery) works.

Quick fix change $('.slideshow') to jQuery('.slideshow')

share|improve this answer
Thanks for the help. – fmz Apr 13 '12 at 15:08
This is just a quick fix though, so you would be best trying to find a more elegant solution to avoid this in the future. – Tim B James Apr 13 '12 at 15:19

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.