Created
September 22, 2010 03:47
-
-
Save masaakif/591103 to your computer and use it in GitHub Desktop.
Remove top part of Safari Printable page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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