Monday, June 20, 2005

Javascript Shell Bookmarklet

Web Development Bookmarklets

Check the Shell bookmarklet...
It is amazing...
It lets you treat the textarea as a shell, where you can type "javascript" commands and observe the changes from where the bookmarklet was created!!!!

eg changing all the images source to empty...

for (i in document.images) {
document.images[i].src = '';
}

No comments: