jQuery script not functioning in IE9 or Chrome (works in FireFox) -
attempting jquery execute method upon loading page fails chrome , ie9. following attempts execute method have been tried no avail:
(function($) { $(document).ready(function(){ slideshow(7500); }); })(jquery); $(document).bind("ready", function() { slideshow(7500); }) $(window).load(function() {slideshow(7500);}); alert(typeof $);
please note: last of these attempts execute jquery failed produce alert in chrome , ie9.
also, placing these scripts @ end of document did not solve problem. doing produced blank page. versions of script listed above work in firefox.
have tried
$(document).ready(function(){ slideshow(7500); }
after include jquery?
Comments
Post a Comment