showing results for - "adding jquery from console"
Lucia
19 Aug 2018
1const jq = document.createElement('script');
2jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js";
3document.getElementsByTagName('head')[0].appendChild(jq);
4
5//Jquery Code here
6$(document).fadeIn()