jquery modal popup read from a file
Posted
by Hulk
on Stack Overflow
See other posts from Stack Overflow
or by Hulk
Published on 2010-04-02T14:01:56Z
Indexed on
2010/04/02
14:03 UTC
Read the original article
Hit count: 668
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....
© Stack Overflow or respective owner