Questions tagged [bookmarklet]

A bookmarklet is a browser bookmark for a URL using the 'javascript:' protocol. The 'javascript:' prefix is followed by a snippet of JavaScript code. When invoked, instead of navigating to a new page, the script is executed within the context of the current page.

A bookmarklet is a browser bookmark for a URL using the javascript: protocol. The javascript: prefix is followed by a snippet of JavaScript code. When invoked, instead of navigating to a new page, the script is executed within the context of the current page.

1355 questions
-3
votes
1 answer

Change input type for all text fields into password fields

I need code that changes all text input fields into password input fields (hidden with Asterisk) if they are text type (preferably a javascript bookmarklet). P.S: I use Google Chrome, and I don't know anything about placing jquery in chrome
-4
votes
1 answer

Tweaking the "Press this" Wordpress bookmarklet

I'm using the default Wordpress "Press This" bookmarklet which is good, but I want to change a couple of things. this is the…
Unorthodox
  • 11
  • 1
  • 8
-4
votes
2 answers

extract only sort function from code block

I am using the following bookmarklet to sort textarea ascending or descending. It is working as expected. But I do not need descending sort option and there is no need of arrows like '↑' or '↓' I am not able to extract the basic sort function from…
shantanuo
  • 31,689
  • 78
  • 245
  • 403
-4
votes
1 answer

Javascript prompt, display a message if answer is right

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:…
1 2 3
90
91