Problem
Create a Dialog ( Alert )
Solution Code
Dialog with a fixed height and width
$('<div></div>').appendTo('body').html(Dialog with a fixed height and width
'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');
}
}
});