{Script}

{CSS}

Greasemonkey Script: "Blogger BlogTrap Removal"

When you preview Templates, POSTs and PAGEs in Blogger, you can't click on anything because of a CSS "trap".
This is just a small and simple script to remove this limitation.


Script Snippet
// ==UserScript==
// @name Blogger BlogTrap Removal
// @description Removes Preview Trap when previewing Pages/Posts on Blogger
// @namespace http://awtmk.blogspot.com/
// @include http://www.blogger.com/html?blogID=*
// @include http://*.blogspot.com/b/post-preview*
// @source ...
// @version 1.0.0
// @date 2010-11-17
// ==/UserScript==

(function () {
  document.getElementsByClassName("blogger-clickTrap")[0].style.display = "none";
})();
In case you don't want Greasemonkey you can bookmark the following javascript instruction:
javascript:document.getElementsByClassName("blogger-clickTrap")[0].style.display = "none";
void(0);

1 comments :

#MK said...

I forgot to create one at UserScripts.
Once I do I put just a nice, Install button.