Skip to content

Instantly share code, notes, and snippets.

@DrummerHead
Created May 20, 2012 21:05
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 DrummerHead/2759533 to your computer and use it in GitHub Desktop.
Save DrummerHead/2759533 to your computer and use it in GitHub Desktop.
Just to show a comrade to debug this stuff
/* - These is a javascript snippet to be used with
http://mcdlr.com/js-inject/ - */
/* - Hideliminator - Any website - *\
|* - Hide elements on command - *|
\* - v1.0 - */
var h1d3l1m1n4t04 = {
$me : this,
pedro : function() {
console.log(this.$me);
},
$allElem : $('body *'),
$body : $('body'),
$endThis : $('<a/>', {
href : '#',
id : 'endTheSuffering',
css : {
'position' : 'fixed',
'top' : '0',
'right' : '0',
'background-color' : 'rgba(0,0,0,.5)',
'display' : 'block',
'color' : '#fff',
'pointer' : 'cursor',
'text-decoration' : 'none',
'padding' : '1em',
},
text : 'End Hideliminator'
}),
hider : function(e) {
e.stopPropagation();
$(this).hide();
return false;
},
enter : function(e) {
e.stopPropagation();
$(this).css({
'outline':'1px solid red'
});
},
leave : function(e) {
e.stopPropagation();
$(this).css({
'outline':'none'
});
},
endHideliminator : function(e) {
e.preventDefault();
this.$allElem
.unbind('.h1d3l1m1n4t04')
$(this).fadeOut();
},
initialze : function() {
this.$allElem
.bind('click.h1d3l1m1n4t04', this.hider)
.bind('mouseover.h1d3l1m1n4t04', this.enter)
.bind('mouseout.h1d3l1m1n4t04', this.leave);
this.$body.prepend(this.$endThis);
}
}
// h1d3l1m1n4t04.initialze();
h1d3l1m1n4t04.pedro();
/* - /Hideliminator - */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment