PROBLEM - Jquery - Create a Dialog ( Alert )

Problem


Create a Dialog ( Alert )


Solution Code


Dialog with a fixed height and width

$('<div></div>').appendTo('body').html(
            'Validation Failed .')
            .dialog({
              resizable : false,
              modal : true,
              title : "Alert",
              height : 150,
              width : 400,
              buttons : {
                "Ok" : function() {
                  $(this).dialog('close');
              }
         }
 });


Dialog with expanding height and width 

$('<div></div>').appendTo('body').html(
            'Validation Failed .')
            .dialog({
              resizable : false,
              modal : true,
              title : "Alert",

              buttons : {
                "Ok" : function() {
                  $(this).dialog('close');
              }
         }
 });