Created
October 29, 2021 12:44
-
-
Save MarioBinder/08861c6070b0ab20baa4712f2050e764 to your computer and use it in GitHub Desktop.
load jquery in console
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var 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); | |
// ... give time for script to load, then type (or see below for non wait option) | |
jQuery.noConflict(); | |
//https://stackoverflow.com/a/7474386/119109 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment