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.
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
Post a Comment