»
AnglaisFrançaisVietnamien

Imprimer - Auto-centrage de la fenêtre Popup - JavaScriptBank.com

Version complète: jsB@nk » Browser » Window » Auto-centrage de la fenêtre Popup
URL: https://www.javascriptbank.com/auto-centering-popup-window.html

Auto-centrage de la fenêtre Popup © JavaScriptBank.comUtilisez 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



JavaScript
<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-->


HTML
<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-->