Skip to content

Instantly share code, notes, and snippets.

@jesperronn
Created November 6, 2009 11:42
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 jesperronn/227952 to your computer and use it in GitHub Desktop.
Save jesperronn/227952 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name www.al-anon.dk Remove inline scroll so that page content prints properly
// @namespace http://userscripts.org/users/103819
// @description remove scroll from al-anon pages
// @include http://al-anon.dk/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js
// ==/UserScript==
$('#framen').css({'height': 'auto', width: 'auto'});
$('<style media="print">#menu {display: none;}</style>').appendTo('head');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment