Skip to content

Instantly share code, notes, and snippets.

@mkpt
Created October 24, 2017 23:34
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 mkpt/9ac088a5610c70462a6e778de735cd9e to your computer and use it in GitHub Desktop.
Save mkpt/9ac088a5610c70462a6e778de735cd9e to your computer and use it in GitHub Desktop.
var cleanIt = function() {
var myIds = ['hplogo', 'my-tiles','most-visited','hplogop', 'dood', 'prm', 'prm-pt','gbq1'];
for (var i=0; i < myIds.length; i++) {
try {
var el = document.getElementById( myIds[i] );
el.parentElement.removeChild(el);
} catch(e) {}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment