Skip to content

Instantly share code, notes, and snippets.

@onewheelskyward
Created November 4, 2015 18:52
Show Gist options
  • Save onewheelskyward/4f11cb68627c78178fe4 to your computer and use it in GitHub Desktop.
Save onewheelskyward/4f11cb68627c78178fe4 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Remove symfony header
// @namespace http://your.homepage/
// @version 0.1
// @description enter something useful
// @author You
// @match http://symfony.com/doc/current/book/testing.html
// @grant none
// ==/UserScript==
rm('header-top');
rm('sln');
rm('header-bottom');
function rm(id) {
document.getElementById(id).parentNode.removeChild(document.getElementById(id));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment