In most web browsers, you can execute JavaScript in the address bar (i.e.
javascript:alert('Test');
Is it possible to execute jQuery in the address bar?
In most web browsers, you can execute JavaScript in the address bar (i.e.
javascript:alert('Test');
Is it possible to execute jQuery in the address bar?
One word: yes :)
Use Firebug or the IE developer tools like you normally would, make sure that the current page has script references to the jQuery library, then go to town on your selectors!
It's a good way to test selectors and functionality before incorporating it into your code
EDIT: slightly mis-read the question, but the answer is still the same. Whether it's the address bar or the console window, you can use jQuery. Try putting javascript:$("#content").remove()
into your address bar while viewing this page and see what happens ;)
Yep. here's an example where jquery is already on the page: http://meta.stackoverflow.com/questions/20420/countdown-app-for-devdays/20430#20430
Another way you could do it is by specifying a js file that first loads the JQuery library. maybe like this: http://www.javascriptkit.com/javatutors/loadjavascriptcss.shtml