Created
October 31, 2012 06:58
-
-
Save fengxx/3985536 to your computer and use it in GitHub Desktop.
hide books24x7 useless header
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
if (location.href.indexOf('skillport.books24x7.com/assetviewer.aspx?') != -1 ) | |
{ | |
window.addEventListener( | |
'load', | |
function showDirectURI() { | |
//hide useless header so book contents will be larger | |
document.getElementById("HeaderTable").style.display="none"; | |
document.getElementById("container").style.height="100%"; | |
} | |
,false | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment