L
louvino
Hi,
When I open a showModialDialog, I create a node of DOM (<DIV
WIDTH="200px"><B>Text here</B></DIV>).
I want to get this node in the calling page but I get the node <DIV
WIDTH="200px"></DIV>.
What's the problem ?
Please help me.
Code of the calling page :
Code of the showModalDialog :
When I open a showModialDialog, I create a node of DOM (<DIV
WIDTH="200px"><B>Text here</B></DIV>).
I want to get this node in the calling page but I get the node <DIV
WIDTH="200px"></DIV>.
What's the problem ?
Please help me.
Code of the calling page :
<html>
<head>
</head>
<body>
<script type="text/javascript">
var m=showModalDialog("modal.html", "status=no; scroll=no; help=no; unadorned=yes");
alert(m.outerHTML);
</script>
</body>
</html>
Code of the showModalDialog :