Popup script
Auteur: XenoX - 19 augustus 2004 - 17:17 - Gekeurd door: Dennisvb - Hits: 8165 - Aantal punten: 3.33 (3 stemmen)
Dit script opent een popup met de door jou opgegeven maten.
Je gebruikt het zo:
<a href="#" onClick="popup('popup.html','shouts','400','400');">Open popup</a>
<a href="#" onClick="popup('popup.html','shouts','400','400');">Open popup</a>
|
Code: |
function popup(page,title,width,height) {
var winl = (screen.width - width) / 2;
var wint = (screen.height - height) / 2;
window.open(''+page,''+title,'width='+width+',height='+height+',top='+wint+',left='+winl+',resizable=no,scrollbars=no,toolbar=no');
}
function popup(page,title,width,height) { var winl = (screen.width - width) / 2; var wint = (screen.height - height) / 2; window.open(''+page,''+title,'width='+width+',height='+height+',top='+wint+',left='+winl+',resizable=no,scrollbars=no,toolbar=no'); }
Download code (.txt)
|
|
Stemmen |
Niet ingelogd. |
|