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?

link|improve this question

feedback

6 Answers

up vote 30 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.

link|improve this answer
+1 beat me to it. :) – Tomalak Sep 19 '11 at 16:46
+1, as Tomalak said – genesis Sep 19 '11 at 16:47
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 at 16:35
@Jazzerus Thanks, good suggestions, incorporated into my answer. – jondavidjohn Mar 29 at 16:42
I'd go even further and use the following link: bit.ly/jqjqjq :-) – Florian Margaine Apr 6 at 20:13
show 1 more comment
feedback

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.

link|improve this answer
feedback

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

link|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
feedback

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).

link|improve this answer
1  
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 at 22:08
2  
Do you mean document.querySelectorAll('div.className .active').filter(function(index) {})? :p – Florian Margaine Apr 6 at 22:29
1  
@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 at 23:14
feedback

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

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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