Monday, June 25, 2018

DELETE CONFIRM DIALOG USING JQUERY


<div id="dialog-confirm"></div>

$("#dialog-confirm").append("Are you sure you want to delete  " + content + "?");
$("#dialog-confirm").dialog({
        resizable: false,
        height: height,
        width: 400,
        modal: true,
        dialogClass: "deleteItem",
        title: "Delete",
        buttons: {
            "Delete": function () {
                //TOD
                $(this).dialog("close");


            },
            Cancel: function () {

                $(this).dialog("close");

            }

        }
    });

No comments:

Post a Comment

javascript Filter/index off

 var family = [{"name":"Jack",  "age": 26},               {"name":"Jill",  "age"...