website implement jquery in js

Solutions on MaxInterview for website implement jquery in js by the best coders in the world

showing results for - "website implement jquery in js"
Bilel
05 Apr 2018
1// Paste this into your JS Console and jQuery sould be available! :)
2var script = document.createElement('script');
3script.src = 'https://code.jquery.com/jquery-3.6.0.min.js';
4script.type = 'text/javascript';
5document.getElementsByTagName('head')[0].appendChild(script);