21278 Posts in 5728 Topics by 2599 members
| Go to End | ||
| Author | Topic: | 8558 Views |
-
Re: jQuery Cycle Lite Plugin and SilverStripe

10 April 2009 at 3:04am
Most likely it's because there's a variable name clash? Could it be that prototype or some other library is being loaded that shadows the $ variable? Maybe you should have a look in firebug which javascript files are being loaded.
-
Re: jQuery Cycle Lite Plugin and SilverStripe

9 July 2009 at 2:25am
I stumbled upon this thread as I'm re. new to jQuery - a bit late maybe, but I thought to let you know anyhow: for me it worked when I added '$' to the function as I saw here: http://docs.jquery.com/Using_jQuery_with_Other_Libraries somewhere halfway down the page.
<script type="text/javascript">
jQuery(document).ready(function ($) {
$('#slideshow').cycle();
});
</script> -
Re: jQuery Cycle Lite Plugin and SilverStripe

25 June 2010 at 2:54pm
Hey Martimiz,
You're not too late. Your solution is the only one that worked for me. Thanks heaps!!
Cheers,
Rob -
Re: jQuery Cycle Lite Plugin and SilverStripe

25 June 2010 at 3:25pm Last edited: 25 June 2010 3:25pm
Another way to do this (Banal actually helped with on another post a while back) is have your JQuery syntax like this...
;(function($) {
$(document).ready(function() {
$('#slideshow1').cycle();});
})(jQuery);You just wrap JQuery in this function which will then negate any conflicts of the usage of the '$' sign.
-
Re: jQuery Cycle Lite Plugin and SilverStripe

26 May 2011 at 11:43pm
I know this thread is old but just wanted to say thankyou edk - your sample is the only one that would work for me.
-
Re: jQuery Cycle Lite Plugin and SilverStripe

30 May 2011 at 10:58am
sounds like its a common problem with the conflict between Jquery and prototype lib.
| 8558 Views | ||
| Go to Top |





