how can I make a bookmark that installs jquery?
so that when I am in the developer console, I can call jquery functions from whatever websites i'm on?
how can I make a bookmark that installs jquery?
so that when I am in the developer console, I can call jquery functions from whatever websites i'm on?
I have such a bookmark, I did see the solution somewhere in a comment somewhere on SO once..
javascript:!function(){var jq = document.createElement('script'); jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"; document.getElementsByTagName('head')[0].appendChild(jq); /*jQuery.noConflict();*/}();
you can update it to the latest jquery
a similar thing is mentioned https://tutel.me/c/programming/questions/7474354/include+jquery+in+the+javascript+console