SlickCatSeven
asked on
jQuery upgrade to 1.9.1 from 1.5 and slideshow stopped working
I recently switched from jQuery 1.5 to 1.9.1 and found that my slideshow stopped working. Here is the slideshow script in the header:
-------------------------- ---------- ---------- ---------- ---------- --
<script type="text/javascript">
$(document).ready(function () {
$('.slideshow').cycle({
fx: 'fade'
});
});
</script>
-------------------------- ---------- ---------- ---------- ---------- --
Here are my includes:
-------------------------- ---------- ---------- ---------- ---------- --
<script type="text/javascript" src="../jq/jquery.js"></sc ript>
<script type="text/javascript" src="../js/jquery.cycle.al l.latest.j s"></scrip t>
-------------------------- ---------- ---------- ---------- ---------- --
I can't remember why I'm including 'jquery.cycle.all.latest.j s' because it was a long time ago, but might it have something to do with the problem...?
Mahalo.
--------------------------
<script type="text/javascript">
$(document).ready(function
$('.slideshow').cycle({
fx: 'fade'
});
});
</script>
--------------------------
Here are my includes:
--------------------------
<script type="text/javascript" src="../jq/jquery.js"></sc
<script type="text/javascript" src="../js/jquery.cycle.al
--------------------------
I can't remember why I'm including 'jquery.cycle.all.latest.j
Mahalo.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Look in the console to see what you need to fix to be able to remove the migrate
ASKER