All pastes #2062699 Raw Edit

Stuff

public javascript v1 · immutable
#2062699 ·published 2011-05-17 16:43 UTC
rendered paste body
   $("#pw_list ul li a.delete").live('click',function(event){        event.preventDefault();        var answer = confirm("Delete this entry ?")        if (answer){            var url = $(this).attr('href');            $.getJSON(url, function(data) {                if(data.error){                    alert(data.msg);                } else {                    $(this).remove();                }            });        }    });