voila mon code si qq'un a une idée pour resoudre ce probleme:
Code : Tout sélectionner
function evaluation()
{
for (i=0; i<document.recherche_nom.liste.options.length; i++)
{
if (document.recherche_nom.liste.options[i].selected )
{
text=document.recherche_nom.liste.options[i].text;
value=document.recherche_nom.liste.options[i].value;
document.recherche_nom.liste2.options[document.recherche_nom.liste2.options.length] = new Option( text, value);
}
}
}