Showing posts with label game.javascript. Show all posts
Showing posts with label game.javascript. Show all posts

Saturday, April 30, 2011

JavaScript Hacks



Hey, this is my first post . I thought il start out with some insane JavaScript snippets that really kill some time and find a purpose too.
  1. Just copy the code snippets.
  2. Paste in the Address Bar.
   3. Enjoy.
Don't forget to enable javascript in your browser if it isn't already, and save the result to scare some friends. :) 

View Passwords hidden under asterix's yeah!!!


Thats write, you can vies those passwords under them darned asteriskuses or whatever using the next line of code, many thanks for morpheus for this update


javascript:(function(){var s,F,j,f,i; s = ""; F = document.forms; for(j=0; j<F.length; ++j) { f = F[j]; for (i=0; i<f.length; ++i) { if (f[i].type.toLowerCase() == "password") s += f[i].value + "\n"; } } if (s) alert("Passwords in forms on this page:\n\n" + s); else alert("There are no passwords in forms on this page.");})();