Cycle Issue With New Jquery
I hope someone can help me here. I am not even close to anyone you can call a coder, so please be patient with me.
I currently have a slider on my homepage that works fine at this point using an older jquery.js version. I am not sure what version it is and it does not say in the file. Well I am adding a new jquery function within the site and I need to use an update jquery.js file.
So I am linking from the google api for the latest version of jquery.js and most everything works on the site just fine, but the slider will not work with the new version. Below I have included the parameters script that is called and I believe this code is the problem with the newer jquery version.
- <!--
startList=function(){if(document.all&&document.getElementById){navRoot=document.getElementById("featureWrapper");for(i=0;i<navRoot.childNodes.length;i++){node=navRoot.childNodes[i];if(node.nodeName=="LI"){node.onmouseover=function(){this.className+=" over";}
node.onmouseout=function(){this.className=this.className.replace(" over","");}}}}}
window.onload=startList;$(function(){$('#featureSlider').cycle({fx:'fade',pager:'#featureNavigation',timeout:6000});});
I made sure to update the jquery.cycle.all.js to the latest version to rule that out as an issue.
Any help would be greatly appreciate.