For the below code,
there ia a form in the location /home/form.php .How can this form be opened with the below code.i.e, the modal dialog
$dialog.html(data)
.dialog({
autoOpen: true,
position: ['right','bottom'] ,
title: 'Emp Form',
draggable: false,
width : 300,
height : 400,
resizable : false
});
$dialog.dialog('open');
Thanks....