bonjour,
j'ai un select :
<select name="choice" onChange="changechoice(this);">
<option>choice1</option>
<option>choice2</option>
</select>
// et voici mon javascript.
function changechoice(choice)
{
with(choice)
{
if (value=="choice1")
{
document.location.href = 'choice1.html';;
}
if (value=="choice2")
{
document.location.href = 'choice2.html';;
}
}
}
voila ça fonctionne donc très bien avec google chrome ou firefox mais avec IE ca ne fonctionne pas... je ne comprends pas pourquoi ...
merci d'avance pour votre aide.