Guest User

Untitled

a guest
Jun 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $(function(){
  2. $(document).bind("itemremoved",function(evt,elem){alert('"' + elem.innerHTML + '"is Removed');});
  3. $(document).dblclick(function(evt){
  4. if($(evt.target).is("li")){
  5. $(evt.target).remove();
  6. $(document).trigger("itemremoved",[evt.target]);
  7. }
  8.  
  9. });
  10.  
  11. });
Add Comment
Please, Sign In to add comment