You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
370 B
21 lines
370 B
<html>
|
|
<head>
|
|
<title>Main window</title>
|
|
<script>
|
|
function openModal() {
|
|
window.showModalDialog("modal_1.html",'dialogWidth:250px;dialogHeight:200px;resizable:yes')
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<p>Modal dialog sample</p>
|
|
|
|
<input type="button" value="btn1" onclick="openModal();">
|
|
|
|
<a id="lnk1" href="javascript:openModal()">lnk1</a>
|
|
<div>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |