Jquery Doesn't Seem To Work in HTML5 Project
I'm not sure where i'm going wrong, but every time i write any jquery into my HTML5 projects they completely break. Below i have a simple function in jquery that breaks my project. When i check to see if jquery is loaded in the browser console, it says it is. What am i missing?
this.stop();
var root = this, tl;
var jqueryLibrary = document.createElement('script');
jqueryLibrary.type = 'text/javascript';
jqueryLibrary.async = true;
jqueryLibrary.src = 'https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js';
document.head.appendChild(jqueryLibrary);
function updateSize() {
if ( $(window).width() < 739) {
root.gotoAndStop(2);
}
}
updateSize();
