Skip to content

Instantly share code, notes, and snippets.

@fengxx
Created October 31, 2012 06:58
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 fengxx/3985536 to your computer and use it in GitHub Desktop.
Save fengxx/3985536 to your computer and use it in GitHub Desktop.
hide books24x7 useless header
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