Thumboard bookmarklet

Drag this bookmarklet to the browser toolbar. Then click it to enable Thumboard on any website.

On mobile browser, make a + bookmark of this page. Then copy the code below and paste it in the bookmark's url.

javascript:void((function(){if (typeof Thumboard != 'undefined') return Thumboard.toggle(); var e=document.createElement('script'); e.setAttribute('type','text/javascript'); e.setAttribute('src','http://42at.com/lab/Thumboard/getThumboard.js'); (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(e)})())

Test



Customize it

To get access to the thumboard, define the function __Thumboard_onload. This will be called after the Thumboard has initiazlied. The argument will be the Thumboard object.

Example:
< script type="text/javascript" charset="utf-8">
function __Thumboard_onload (tb){
	// 'tb' is the Thumboard object
	
	tb.options.onEnter = function(value){
		alert(value);
	}; 
	thumboard = tb;	
}
var thumboard;
< /script>