Created
September 22, 2015 05:47
-
-
Save MinimaJack/bfc23e4e0ab7a6259116 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: (function () { | |
var n = prompt("Name"); | |
n = n + ":"; | |
$("ul.messages li").each(function( index ) { | |
if( $( this ).find( "span:first" ).text() == n){ | |
$( this ).remove(); | |
} | |
});})(); |
Author
MinimaJack
commented
Sep 22, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment