I have a site using the prootype structure and I am looking to use a jquery plugin. Everything does not work in IE8. It works in ie7, which amazes me. Any idea what could be wrong?
IE8 gives me an object that does not support this property or method, where the line is jQuery.noConflict (); this is
<script src="/my/docs/jquery.js" type="text/javascript"></script> <script src="/my/docs/jquery.simplyscroll.js" type="text/javascript"> </script> <script type="text/javascript"> jQuery.noConflict(); function OpenUp(sURL){ window.open(sURL,null,'height=560,width=820,status=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes,scrollbars=yes',false); } jQuery(document).ready(function($) { $("head").append("<link>"); css = $("head").children(":last"); css.attr({ rel: "stylesheet", type: "text/css", href: "/my/docs/jquery.simplyscroll.css" }); $("#scroller").simplyScroll({ autoMode: 'loop', framerate: 1, speed: 1 }); }); </script>
I am also tired of the following: var $j = jQuery.noConflict(); var j = jQuery.noConflict(); var $j = jQuery.noConflict(); var j = jQuery.noConflict();
everythig works not only in IE8.
javascript jquery internet-explorer-8
slik
source share