Tema: Popup window
Ver Mensaje Individual
  #7 (permalink)  
Antiguo 07/01/2011, 23:29
Avatar de Masterphp
Masterphp
 
Fecha de Ingreso: septiembre-2009
Ubicación: /home/php/
Mensajes: 94
Antigüedad: 14 años, 8 meses
Puntos: 3
Respuesta: Popup window

funciona esto correctamente si sigue el problema podria estar en tu navegador:

Código HTML:
Ver original
  1. <!-- Codes by Quackit.com -->
  2. <script type="text/javascript">
  3. // Popup window code
  4. function newPopup(url) {
  5.     popupWindow = window.open(
  6.         url,'popUpWindow','height=700,width=800,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes')
  7. }
  8. <a href="JavaScript:newPopup('http://www.gogole.com/');">Open a popup window</a>