Posts

Showing posts from April, 2011

Google chrome javascript console keyboard shortcuts

Simple direct Google searching doesn't seem to bring this up right away so I thought may be a simple search would bring this up and save you some time. Windows / Linux Mac Next Suggestion Tab Tab Previous Suggestion Shift-Tab ⇧Tab Accept Suggestion Right Right Previous Command / Line Up Up Next Command / Line Down Down Previous Command Ctrl-P ⌃P Next Command Ctrl-N ⌃N Clear History Ctrl-L ⌘K or ⌃L Multiline entry Shift-Enter Ctrl+Return Execute Enter Return Source: http://code.google.com/chrome/devtools/docs/shortcuts.html#console

How to invite all your friends to an event ?

This post is on the 7th of April, 2011. I'm pointing out the date because Facebook changes it's structure from time to time and suddenly the JS stated won't work anymore. I was searching for it and here it is: javascript:elms=document.getElementsByName('checkableitems[]');var i = 0;for (var el in elms){elms[i].checked = true;i++;} Have fun !