Hi,
You could have a try with jquery dialog.
The code as follow:
<!DOCTYPE html>
<html>
<head>
<title></title>
<link href="/jquery dialog/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="/jquery dialog/jquery.min.js"></script>
<script src="/jquery dialog/jquery-ui.min.js"></script>
<script type="text/javascript">
jQuery(function () {
var dlg = $("#dialog").dialog({ buttons: { "Ok": function () { $(this).dialog("close"); }, "close": function () { $(this).dialog("close"); } } });
dlg.parent().appendTo(jQuery("form:first"));
});
</script>
</head>
<body>
<div id="dialog" title="Dialog Title">
I'm in a dialog</div>
</body>
</html>
Please mark the replies as answers if they help or unmark if not.
If you have any feedback about my replies, please contact
msdnmg@microsoft.com
Microsoft One Code Framework