Skip to content

Instantly share code, notes, and snippets.

@masaakif
Created September 22, 2010 03:47
Show Gist options
  • Select an option

  • Save masaakif/591103 to your computer and use it in GitHub Desktop.

Select an option

Save masaakif/591103 to your computer and use it in GitHub Desktop.
Remove top part of Safari Printable page
// ==UserScript==
// @name Remove top part of Safari Printable page
// @namespace http://gist.github.com/xxxxx
// @description Remove top part of Safari Printable page
// @include http://my.safaribooksonline.com/print?*
// ==/UserScript==
//
deleteTopPart();
function deleteTopPart() {
var maindiv = document.evaluate("//div[2]", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
if (maindiv) {
maindiv.removeChild(maindiv.childNodes.item(0));
maindiv.removeChild(maindiv.childNodes.item(0));
maindiv.removeChild(maindiv.childNodes.item(0));
maindiv.removeChild(maindiv.childNodes.item(0));
maindiv.removeChild(maindiv.childNodes.item(0));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment