So, I want to make a javascript bookmarklet that starts a prompt to type in a password. if the password is correct it will alert a secret message. I put together some code from my other bookmarklets, and made this:
javascript: prompt("Password?");if(12345) alert(Correct)
But alas, it doesn't work. The only javascript experience i have is tinkering a little with a bunch of bookmarklets so...