Monday, June 11, 2007

Javascript popup window

Code to make a javascript popup window
=============================

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Javascript popup window</title>

</head>
<body>

<a href="mypopuppage.html" onclick="window.open(this.href,'','width=400,height=400,resizable=yes,menubar=yes,scrollbars=yes');return false">Open Me Please</a>
</body>
</html>

No comments: