[Pocket PC] - IE réagit differemment
salut à tous
voila, j'ai une fonction javascript qui marche bien avec IE 6 sur PC mais sur IE pocket PC W 2003, ça marche plus ! quelqu'un à déjà eu ce probléme ?
apparemment c'est le "outerHTML" qu'il y a dans la fonction, que Pocket IE ne comprend pas !
Code:
1 2 3 4 5 6 7 8
|
function changeliste() {
choix=document.form1.listeA.value
t="<select name='listeB' class='newsinput'>"
for(i=0;i<liste[choix].length-1;i++)
t+="<option value='"+liste[choix][i]+"'>"+listenom[choix][i]+"</option>"
document.getElementById('listeB').outerHTML=t+"</select>"
} |
merci pour votre aide !
kenavo !