- Du er nødt til at klikke på et link da popup vinduer normalt vil blive blokeret...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-1"><title>Ingen titel</title></head>
<body>
<a href="#" onclick="window.open('test.html','mitvindue','width=800,height=600,left='+(screen.availWidth-800)/2+',top='+(screen.availHeight-600)/2);">Åben vinduet</a>
</body></html>
her er den med automatisk popup vinduet
- men med popup blocker sker der ikke så meget...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-1"><title>Ingen titel</title></head>
<script type="text/javascript">
window.onload=function(){
window.open('test.html','mitvindue','width=800,height=600,left='+(screen.availWidth-800)/2+',top='+(screen.availHeight-600)/2);
}
</script>
<body></body></html>