JQuery Dialog box

Jak
Jak
Member
858 Points
132 Posts

Hi,

JQuery Dialog box?

Views: 8644
Total Answered: 1
Total Marked As Answer: 0
Posted On: 17-Apr-2015 05:20

Share:   fb twitter linkedin
Answers
Rahul Maurya
Rahul M...
Teacher
4822 Points
23 Posts
         

Hi,

Use it:

<script>
$(function () {
$("#dialog-confirm").dialog({
resizable: false,
height: 140,
modal: true,
buttons:
{
"Delete all items": function () {
$(this).dialog("close");},
Cancel: function () {
$(this).dialog("close");}
}
});
});
</script>
Posted On: 20-Apr-2015 12:00
 Log In to Chat