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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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 😉