Skip to content

Instantly share code, notes, and snippets.

@neilerdwien
Last active August 18, 2016 05:35
Show Gist options
  • Save neilerdwien/20e2798feb14250efbc6d1cd8f82a4ab to your computer and use it in GitHub Desktop.
Save neilerdwien/20e2798feb14250efbc6d1cd8f82a4ab to your computer and use it in GitHub Desktop.
Bookmarklet to remove URLs from printouts of Kansas State University web pages
javascript:(function(){
var ac = function(cl) {
var dl = document.getElementsByClassName(cl);
for (var i = 0; i < dl.length; i++) {
dl[i].classList.add('ksu-no-print-url');
}
};
ac('ksu-main-content');
ac('ksu-sidebar-secondary');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment