Skip to content

Instantly share code, notes, and snippets.

@gherkins
Last active December 14, 2015 15:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gherkins/5107724 to your computer and use it in GitHub Desktop.
Save gherkins/5107724 to your computer and use it in GitHub Desktop.
(function(){
var v = "1.3.2";
if (window.jQuery === undefined || window.jQuery.fn.jquery < v) {
var done = false;
var script = document.createElement("script");
script.src = "http://ajax.googleapis.com/ajax/libs/jquery/" + v + "/jquery.min.js";
script.onload = script.onreadystatechange = function(){
if (!done && (!this.readyState || this.readyState == "loaded" || this.readyState == "complete")) {
done = true;
initMyBookmarklet();
}
};
document.getElementsByTagName("head")[0].appendChild(script);
} else {
initMyBookmarklet();
}
function initMyBookmarklet() {
(window.myBookmarklet = function() {
$('body *').hide();
$('h2, .subject h3').appendTo($('body')).show();
})();
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment