Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/10/2010, 02:54
Avatar de dargorg
dargorg
 
Fecha de Ingreso: octubre-2010
Ubicación: Castellón (España)
Mensajes: 188
Antigüedad: 13 años, 6 meses
Puntos: 9
Respuesta: Form con argumentos multivaluados

Sí, sería mejor con javascript hacer 3 window.open con las direcciones correspondientes para cada uno.

Código:
window.open("http://www.google.com/?q=busqueda1" , "ventana1" , "width=120,height=300,scrollbars=NO");
window.open("http://www.google.com/?q=busqueda2" , "ventana1" , "width=120,height=300,scrollbars=NO");
window.open("http://www.google.com/?q=busqueda3" , "ventana1" , "width=120,height=300,scrollbars=NO");
Un saludo