Re: how to add custom delete confirmation message

2013-06-11 Thread Sébastien Billion
Hi, You are not really on the good for this. Maybe can you ask on a JQuery forum. I don't see when you change the style="display:none1" of your #overlay_form. Your popup is never displayed 2013/6/12 > JavaScript: > > $('.delete_icon').click(function(){ > var obj = $(this) > var csrf

how to add custom delete confirmation message

2013-06-11 Thread roopasingh250
JavaScript: $('.delete_icon').click(function(){ var obj = $(this) var csrf_token = "{{ csrf_token }}"; var email = $(this).attr('value'); var id = $(this).attr('id'); $.ajax({ data:{csrfmiddlewaretoken: csrf_token,id:id,cancel_email:email}, type:'POST',