Skip to content

Instantly share code, notes, and snippets.

@maxwellnewage
Last active December 11, 2015 02:28
Show Gist options
  • Save maxwellnewage/4530297 to your computer and use it in GitHub Desktop.
Save maxwellnewage/4530297 to your computer and use it in GitHub Desktop.
borra entradas mediante jquery ui dialog
$().ready(function () {
$("a.borrar").live('click', function (e) {
e.preventDefault();
tag_camp = $(this).parent("h3").parent(".info_suc_config");
$("#dialog-confirm").dialog({
resizable: true,
height: 140,
modal: true,
show: "slow",
title: "Desea borrar la entrada?",
buttons: {
"Borrar Entrada": function () {
$(tag_camp).remove();
$(this).dialog("close");
},
"Cancelar": function () {
$(this).dialog("close");
}
}
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment