Bonjour,
bien qu'ayant parcouru le forum, je ne trouve pas de réponse à mon souci avec Firefox (marche sous IE8) :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function ChangerClient () {
var Nom            = document.getElementById('Client');
var NomDetail    = document.getElementById('Libelle'); 
var Selection    = document.FormeSaisie.Client; 
var Index        = document.FormeSaisie.Client.selectedIndex; 
var Navigateur = navigator.appName;
Nom.value        = Selection.options[Index].value; 
alert('Nom:'+Nom.value); 
if (Navigateur == 'Netscape') {
  NomDetail.value    = Selection.options[Index].innerHTML; 
} else {
  NomDetail.value    = Selection.options[Index].text; 
} 
alert('NomDetail:'+NomDetail.value);
}
<select name='Client' id='Client' onChange="ChangerClient()">
<option value='1'>Gilbert</option>
<option value='2'>Gaston</option>
<option value='3'>Richard</option>
</select>