Menambahkan jQuery dari konsol

const jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);

//Jquery Code here
$(document).fadeIn()
Lucky Lion