javascript - Website not working properly because of jquery not loading -


this website not mine . use guest.

recently stoped working , owners doesn't seem take care of it. there way fix using console or plugin ?

looks there error loading jquery.

enter image description here

you can try inject obsolete version of jquery in browser, try (in console):

(function(){ $.noconflict(); // turns off namespace $ newer jq  var script = document.createelement('script') script.src="https://code.jquery.com/jquery-1.6.4.min.js" document.body.appendchild(script) })() 

Comments

Popular posts from this blog

unity3d - Rotate an object to face an opposite direction -

angular - Is it possible to get native element for formControl? -

javascript - Why jQuery Select box change event is now working? -