$(document).ready(function() { $('.delete_license').click(function(e){ e.preventDefault(); var accountID = $(this).data('id'); $('#dialogs').html('Удалить счет на оплату?'); $('#dialogs').dialog({ buttons: { "Да": function(){ $.post('/my/delete_license/' + accountID + '/', function(data){ $('.account_' + data['id']).remove() }); $(this).dialog("close"); }, "Нет": function(){ $(this).dialog("close"); } } }) }) });