Version compl�te: jsB@nk » Browser » Window » Auto-centrage de la fenêtre Popup
URL: https://www.javascriptbank.com/auto-centering-popup-window.html
Utilisez ce script DHTML pratique de ne pas seulement ouvrir les liens dans une nouvelle fenêtre secondaire, mais une qui est centré au milieu de l'écran de l'utilisateur!
Version compl�te: jsB@nk » Browser » Window » Auto-centrage de la fenêtre Popup
URL: https://www.javascriptbank.com/auto-centering-popup-window.html
<script language="javascript">// Auto center window script- Eric King (http://redrival.com/eak/index.shtml)var win = null;function NewWindow(mypage,myname,w,h,scroll){LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;TopPosition = (screen.height) ? (screen.height-h)/2 : 0;settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'win = window.open(mypage,myname,settings)}</script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->
<a href="popup_content.html" onclick="NewWindow(this.href,'name','400','400','yes');return false">Open popup</a><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->