> Let's say i'm on google.com and I would like to make some research on
> their page, using jQuery in the firebug console would be handy. I know
> it's possible with greasemonkey but I wonder if there's an easier way
> to do this ?
Here's an example. Type the following into the firebug console:
var s = document.createElement('script');
s.src='http://jquery.com/src/jquery-1.0.4.js';
document.body.appendChild(s);
Then do whatever you want with jq. For example:
alert($('div').size());
Mike
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/