Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an easy way to include jQuery in the chrome Javascript Console for sites that do not use it? For example - on a website I would like to get the number of rows in a table. I know this is really easy with jQuery.

$('element').length;

But the site does not use jQuery. Can I add it in from the command line?

share|improve this question
2  
For more of an automated approach you can use a userscript to include it. Seriously this would be like a 5 line userscript :P – rlemon Jun 19 '12 at 13:26

9 Answers

up vote 144 down vote accepted

run this in your browser's javascript console, then jQuery should be available...

var jq = document.createElement('script');
jq.src = "http://code.jquery.com/jquery-latest.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
jQuery.noConflict();

NOTE, if the site has scripts that conflict with jQuery (other libs, etc..) you could still run into problems.

share|improve this answer
2  
To avoid conflicts with other JS libraries, call jQuery.noConflict(); after jQuery has been added. To test with the latest version of jQuery, use: code.jquery.com/jquery-latest.min.js – Jazzerus Mar 29 '12 at 16:35
@Jazzerus Thanks, good suggestions, incorporated into my answer. – jondavidjohn Mar 29 '12 at 16:42
9  
To get around the protocal issues just leave it off. js.src = "//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" – William Clemens Oct 11 '12 at 20:42
6  
This snippet didn't work for me. Had no time to figure it out why. Just copied code.jquery.com/jquery-latest.min.js file content and pasted into console. Works perfect. – Ruslanas Balčiūnas Nov 22 '12 at 11:32
1  
@CrisStringfellow - AKAIK there's a developer snippets feature in the works, check your chrome:flags and see if it's there, you'll need to switch it on. – Slomojo Mar 5 at 1:09
show 9 more comments

Use the jQueryify booklet:

http://marklets.com/jQuerify.aspx

Instead of copy pasting the code in the other answers, this'll make it a clickable bookmark.

share|improve this answer

Run this in your console

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

It creates new script tag, fills it with jQuery and appends to head

share|improve this answer

Copy http://code.jquery.com/jquery-latest.min.js file content and paste it into console. Works perfect.

share|improve this answer
1  
Works like a charm! And it doesn't add script to DOM which sometimes it's not possible due to 'Content Security Policy Directive'. I've tried accepted answer which resulted in: Refused to load the script 'ajax.googleapis.com/ajax/libs/jquery/1/jquery.js'; because it violates the following Content Security Policy directive: "script-src .... – Kangur Feb 2 at 11:10
First check if there is a $ variable. If it's not jQuery one should probably let go of jQuery hold on $ var. After invoking above script type: $.noConflict() – Kangur Feb 2 at 11:18

It's pretty easy to do this manually, as the other answers explain. But there's also the jQuerify plug-in.

share|improve this answer
+1 - Thanks Ken. The word jQuerify reminded me that I created a bookmarklet to do this. I added my own answer that had the code I used. I knew I had done this before =). – mrtsherman Sep 19 '11 at 16:57

I'm a rebel.

Solution: don't use jQuery. jQuery is a library to abstract the DOM inconcistencies across the browsers. Since you're in your own console, you don't need this kind of abstraction.

For your example:

document.getElementsByTagName('element').length

For any other example: I'm sure I can find anything. Especially if you're using a modern browser (Chrome, FF, Safari, Opera).

Besides, knowing how the DOM works wouldn't hurt anyone, it would only increase your level of jQuery (yes, learning more about javascript makes you better at jQuery).

share|improve this answer
2  
Thanks for the idea Florian. I agree that anyone using jQuery should also know javascript. Loading jQuery is a big time saver not just because it abstracts DOM inconsistencies. Its selector engine, sizzle, is far more powerful than any of the native javascript calls. Querying for something like $('div.className').children().hasClass('active').filter( function(index) { ... }); would be a nightmare in plain js. – mrtsherman Apr 6 '12 at 22:08
4  
Do you mean document.querySelectorAll('div.className .active').filter(function(index) {})? :p – Florian Margaine Apr 6 '12 at 22:29
4  
@FlorianMargaine [].slice.call( document.querySelectorAll('div.className .active') ).filter... but yeah the point stands: if you have modern browser dom is painless even without jQuery. :) – Esailija Apr 6 '12 at 23:14
Still way more awkward to throw in stuff like animate(). – alexvance Oct 10 '12 at 16:12
You're not a rebel, it seems, instead, that you like to waste time typing more :) – Anderson Fortaleza Mar 20 at 12:00

Chrome includes jQuery in the console in the latest builds aliases $ to document.querySelectorAll which I was mistaking for jQuery's implementation. Sorry for the confusion.

Try it now (Ctrl+Shift+J opens the console directly)!

share|improve this answer
I don't believe this is correct do you have a source? It is more likly that the site was just using jQuery. – William Clemens Oct 11 '12 at 20:48
@WilliamClemens Actually, no. I was mistaking the aliasing of $ to document.querySelectorAll in the new versions of Chrome and Firefox with jQuery's implementation of it. Anyway... – YatharthROCK Oct 12 '12 at 12:06
You should edit your answer. I thought this as well, at first! – Cris Stringfellow Mar 1 at 3:05
@CrisStringfellow Thanks for reminding me. The answer may have had confused other readers who didn't scan through the comments. – YatharthROCK Mar 1 at 8:49
@YatharthROCK that's what I was thinking. +! – Cris Stringfellow Mar 1 at 9:59

The top answer, by jondavidjohn is good but I'd like to tweak it to address a couple of points:

  • Various browsers issue a warning when loading a script from http to a page on https.
  • Just changing jquery.com's protocol to https results in a warning if you try it straight from the browser's URL bar: This is probably not the site you are looking for!
  • I like to use Google's CDN when I'm using the console to experiment with Google sites such as Gmail.

My only issue is that I have to include a version where in the console I really always want the latest.

var jq = document.createElement('script');
jq.src = "//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
jQuery.noConflict();
share|improve this answer

If you're looking to do this for a userscript, I wrote this: http://userscripts.org/scripts/show/123588

It'll let you include jQuery, plus UI and any plugins you'd like. I'm using it on a site that has 1.5.1 and no UI; this script gives me 1.7.1 instead, plus UI, and no conflicts in Chrome or FF. I've not tested Opera myself, but others have told me it's worked there for them as well, so this ought to be pretty well a complete cross-browser userscript solution, if that's what you need to do this for.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.