All pastes #2062696 Raw Edit

Unnamed

public text v1 · immutable
#2062696 ·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();
                }
            });
        }
    });