Bookmarklet Bookmarklet

Bookmarklet - Definition

A bookmarklet is a small JavaScript program that can be stored as a URL within a bookmark in most popular web browsers, or within hyperlinks on a web page. Because Microsoft Internet Explorer uses the term favorites instead of bookmarks, bookmarklets are also less commonly called favlets or favelets.

Bookmarklets can be saved and used like normal web page bookmarks. Therefore, they are simple "one-click" tools that can add substantial functionality to the browser. For example, they can:

  • Modify the way a web page is displayed within the browser (i.e., change the font size, background color, etc.).
  • Extract data from a web page (i.e., hyperlinks, images, text, etc.).
  • Jump directly to a search engine, with the search term(s) input either from a new dialog box, or from a selection already made on a web page.
  • Submit the page to a validation service.

The first bookmarklets were named and created by Steve Kangas of www.bookmarklets.com, based on an idea suggested in the Netscape JavaScript Guide.

Brendan Eich, who developed JavaScript at Netscape, gave this account of his invention of the javascript: URL (which makes bookmarklets possible):

They were a deliberate feature in this sense: I invented the javascript: URL along with JavaScript in 1995, and intended that javascript: URLs could be used as any other kind of URL, including being bookmark-able. <p>In particular, I made it possible to generate a new document by loading, e.g. javascript:'hello, world', but also (key for bookmarklets) to run arbitrary script against the DOM of the current document, e.g. javascript:alert(document.links[0].href). The difference is that the latter kind of URL use an expression that evaluates to the undefined type in JS. I added the void operator to JS before Netscape 2 shipped to make it easy to discard any non-undefined value in a javascript: URL.</blockquote> For example, the following bookmarklet will search Wikipedia for the string currently highlighted in the browser:

javascript:Qr=document.getSelection(); if(!Qr){void(Qr=prompt('Keywords...',''))}; if(Qr)location.href='http://en.wikipedia.org/w/wiki.phtml?search='+escape(Qr)
If nothing is selected, it will display a dialog box form field in which to enter a search string. Bookmarklet to set right margin to 45% to make Wikipedia more readable:
javascript:(function(){var newSS, styles='body { margin-left:0%; margin-right:45%;}';if(document.createStyleSheet) {document.createStyleSheet(%22javascript:'%22+styles+%22'%22); } else { newSS=document.createElement('link'); newSS.rel='stylesheet'; newSS.href='data:text/css,'+escape(styles); document.getElementsByTagName(%22head%22)[0].appendChild(newSS); } })();

External links

  • Bookmarklets.com (http://www.bookmarklets.com/): The official homepage of the bookmarklets. Offers also a bookmarklet to make your own.
  • Favlets.com (http://www.favlets.com/): Bookmarklets (or favlets) for a number of different categories.
  • Jesse's Bookmarklets Site (http://www.squarefree.com/bookmarklets/): by Jesse Ruderman. Contains bookmarklets for several different categories (links, forms, text and data, "annoyances," web development, etc.). They have been tested on Internet Explorer, Netscape Navigator, Mozilla, and Opera.
  • Tantek Çelik's Favelets (http://tantek.com/favelets/): For Internet Explorer for Mac.
  • Philburns Bookmarklets (http://www.philburns.com/bookmarklets.html): Contains bookmarklets on categories like Navigation, Searching, Checking Code Validity etc.

Copyright 2009 WordIQ.com - Privacy Policy  :: Terms of Use  :: Contact Us  :: About Us
This article is licensed under the GNU Free Documentation License. It uses material from the this Wikipedia article.