Mar
15th
Tue
15th
Bookmarklet to load jQuery (for firebug/chrome developer tools)
Load jQuery (drag this to your bookmark bar)
The link above is actually a little JS bookmarklet that will load (as in, inject) jQuery in noConflict mode into whatever page you’re on when you click it. This will let you use the full jQuery framework on whatever page you want using your JS console of choice (i.e. Firebug, Chrome Developer Tools, Safari “Error Console”, etc.).
Then you can do fun stuff like:
jQuery(“.eventInviteLayout input[type=checkbox]”).click() (Select all friends in the “Invite Friends” popup for a facebook event).