loothof | Bonjour a tous. J'ai un petit soucis, En effet je souhaite ouvrir une popup quand l'utilisateur selectionne une valeur dans une select box.
Mon code fonctionne bien sous firefox mais pas sous IE et je me demande pourquoi.
Voici une partie de mon code :
Code :
- <FORM METHOD="GET" name="tstest" action=''>
- ...
- ...
- <SELECT NAME="cond2" SIZE=1 value="">
- <OPTION VALUE="ipsrc2">IP source</OPTION>
- <OPTION VALUE="ipdst2">IP destination</OPTION>
- <OPTION VALUE="tcp2">Port TCP</OPTION>
- <OPTION VALUE="udp2">Port UDP</OPTION>
- <OPTION VALUE="proto2" onclick="NewWindow('/sa/popup.php?id=2,5,4&empty=1&select=protocols&target=text2','selectpopup','160','200','yes','center','no');return false">Protocole</OPTION>
- <OPTION VALUE="serv2" onclick="NewWindow('/sa/popup.php?id=2,5,4&empty=1&select=services&target=text2','selectpopup','160','200','yes','center','no');return false">Service</OPTION>
- <OPTION VALUE="zone2" onclick="NewWindow('/sa/popup.php?id=2,5,4&empty=1&select=zones&target=text2','selectpopup','160','200','yes','center','no');return false">Zone</OPTION>
- <OPTION VALUE="net2" onclick="NewWindow('/sa/popup.php?id=2,5,4&empty=1&select=networks&target=text2','selectpopup','160','200','yes','center','no');return false">Reseau</OPTION>
- </SELECT>
- ...
- ...
- </FORM>
|
L'evenement onclick n'est pas executé, je ne comprend vraiment pas pourquoi.
Une aide de votre part serai la bienvenu. Merci
|