Guest User

Untitled

a guest
May 27th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. $("li").click(function(){
  2. $(this).toggleClass("click"); });
  3. $("span").click(function(event){
  4. $(this).parent().fadeOut("slow", function(){
  5. $(this).remove();
  6. });
  7. event.stopPropagation(); });
Add Comment
Please, Sign In to add comment