Hope this is an easy fix but as I am not a javascript expert I don't know how to debug. I get an 'Object doesn't support this property or method' error in IE7 for the following:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" ></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.5.3/jquery-ui.min.js" ></script>
<script type="text/javascript">
$(document).ready(function(){
$("#featured").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 7000, true);
$("#featured").hover(
function() {
$("#featured").tabs("rotate",0,true);
},
function() {
$("#featured").tabs("rotate",7000,true);
}
);
$("#featured").show();
});
</script>
There is a demo at
http://www.cornwall.ac.uk/includes/h...der/index.html which initially loads fine but after a few refreshes the error occurs (strangely). Also I have a test page with the script fully integrated at
http://www.cornwall.ac.uk/cc/index.p..._Home&test=yes which shows the error every time.
Any help would be greatly appreciated, thanks.