»
AnglaisFrançaisVietnamien

Imprimer - Popup Fonction - JavaScriptBank.com

Version complète: jsB@nk » Lien » Popup Fonction
URL: https://www.javascriptbank.com/popup-function.html

Popup Fonction © JavaScriptBank.comUtilisez cette JavaScript fonction à appeler le plus grand nombre fenêtre popup s sur une page que vous avez besoin. Il utilise le CSS attribut de classe. Elle permet également pour les navigateurs qui ont JavaScript turned-off.

Version complète: jsB@nk » Lien » Popup Fonction
URL: https://www.javascriptbank.com/popup-function.html



JavaScript
<script type="text/javascript"><!-- Begin/* Created by: Jeremy Keith :: http://www.adactio.com/ */function doPopups() {  if (!document.getElementsByTagName) return false;  var links=document.getElementsByTagName("a");  for (var i=0; i < links.length; i++) {    if (links[i].className.match("popup")) {      links[i].onclick=function() {        // Below - to open a full-sized window, just use: window.open(this.href);        window.open(this.href, "", "top=40,left=40,width=600,height=400,scrollbars");        return false;      }    }  }}window.onload=doPopups;// End --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<a href="http://javascriptbank.com/" class="popup">JavaScript Source</a><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->