Skip to content

Instantly share code, notes, and snippets.

@skammer
Created January 24, 2011 14:07
Show Gist options
  • Save skammer/793256 to your computer and use it in GitHub Desktop.
Save skammer/793256 to your computer and use it in GitHub Desktop.
И ваш грувшарк будет мягким и шелковистым.
var main = document.getElementById("mainContainer");
var capital = document.getElementById("capital");
var capitalPane = document.getElementById("capitalPane");
var application = document.getElementById("application")
var removeAds = function() {
application.style.marginRight = "0";
capital.style.display = "none";
capital.style.width = "0px";
capitalPane.style.display = "none";
capitalPane.style.width = "0px";
}
main.addEventListener("DOMSubtreeModified", removeAds, true);
removeAds();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment