<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
</head>
<body>

<p id=target>target</p>
<input type=button value=pop id=pop>


<script type="text/javascript">

document.getElementById("pop").onclick = function(){

 window.open("exam08.html","","width=300,height=200");
}

</script>
</body>
</html>

 

//////////////////////////////

 

<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
</head>
<body>

<p id=target>target</p>
<input type=button value=pop id=pop>


<script type="text/javascript">

document.getElementById("pop").onclick = function(){

 window.open("exam08.html","","width=300,height=200");
}

</script>
</body>
</html>

 

+ Recent posts