I remember seeing that there was a specific command you could put on Google Chrome's inspector console for it to load jQuery and allow you to execute jQuery commands.
However, I cannot remember which command it was, and searching online only brings me unrelated results.
Anyone knows which is that command?
Thanks!
EDIT: Years later I had realized that I was asking for the $$
function in the console. However, this is not jQuery but provides a similar selector option, most likely a shorthand for document.querySelectorAll
. The answers here address adding jQuery for real, with all of its functionality.
Load jQuery into your current page by copying and pasting the following code into your Chrome Console. var jqry = document. createElement('script'); jqry. src = "https://code.jquery.com/jquery-3.3.1.min.js"; document.
You can just type window. jQuery in Console . If it return a function(e,n) ... Then it is confirmed that the jquery is loaded and working successfully.
To open the developer console in Google Chrome, open the Chrome Menu in the upper-right-hand corner of the browser window and select More Tools > Developer Tools. You can also use Option + ⌘ + J (on macOS), or Shift + CTRL + J (on Windows/Linux).
You mean, a script to load jQuery in an arbitrary page? I have constructed the following cross-browser bookmarklet for this purpose:
javascript:if(!window.jQuery||confirm('Overwrite\x20current\x20version?\x20v'+jQuery.fn.jquery))(function(d,s){s=d.createElement('script');s.src='https://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.js';(d.head||d.documentElement).appendChild(s)})(document);
It detects whether jQuery exists. If it does, a confirmation dialog appears, in which the current version is shown, so that you can decide whether it's OK to overwtite the existing jQuery object.
Currently, jQuery 1.8 is loaded from a CDN over SSL.
'1.8'
with e.g. '1.7.1'
.jquery.js
with jquery.min.js
.http:
, Google's CDN can be replaced with: To save you time from editing, here's the same bookmarklet as the top of the answer, but getting the latest version (instead of a fixed one) from http://code.jquery.com/
:
javascript:if(!window.jQuery||confirm('Overwrite\x20current\x20version?\x20v'+jQuery.fn.jquery))(function(d,s){s=d.createElement('script');s.src='http://code.jquery.com/jquery.js';(d.head||d.documentElement).appendChild(s)})(document);
Note: Having the latest version is nice, but don't be surprised when jQuery "behaves weird" (=updated).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With