Tuesday, January 12, 2010

Cool Javascripts




CRAZY cool javascript : Edit whatever you want on ANY page : Images, Text.

javascript:document.body.contentEditable='true'; document.designMode='on'; void 0


THE CALCULATOR


want to use your browser as a calculator?

just try this javascript ....


javascript: alert(34343+3434-222);

make edits for different operations...


FINDING SPOOF WEBSITES

There are times when you are not sure that the website that you are visiting is authentic. Use this code whenever in doubt :-

javascript:alert("The actual URL is:\t\t" + location.protocol + "//" + location.hostname + "/" + "\nThe address URL is:\t\t" + location.href + "\n" + "\nIf the server names do not match, this may be a spoof.");

Plz comment if you find it cool