Bookmarklets

Simple framework to build bookmarklets easily

Latest changes:

What's Bookmarklets?

A bookmarklet is a small javascript application stored in a link or in the browser's bookmarks: if this link or bookmark is clicked, the application will be launched. For more information, please, visit the Wikipedia bookmarklet article

This is an easy bookmarklet's example, showing the current time:

<a href="javascript:(function () { var now = new Date; alert(now); })();">Get current datetime</a>

Just try it

Ok, then, what's this project for?

In many cases, you need to build more complicated bookmarklets loading external html, javascript and css files. We have created a little framework to build bookmarklets easily and quickly. All you need is to specify which css and javascript you want to load and whether you want load the jQuery framework and it handles for all.

Fork me on Github