Js compatibilite IE / firefox

Js compatibilite IE / firefox - HTML/CSS - Programmation

Marsh Posté le 30-01-2007 à 13:10:01    

Salut les gens  :hello:  :bounce:  
 
voila, j'ai cette fonction qui marche tres bien  sous IE:
 

Code :
  1. function display_div(num, ID)
  2. {
  3. o = document.getElementById('div_cat_' + num + '_display');
  4. document.getElementById(o.value).style.display = 'none';
  5. div_choix = 'div_cat_' + num + '_' + ID;
  6. if (!document.getElementById(div_choix)) // si existe
  7. {
  8.  div_choix = 'div_cat_' + num + '_aucun';
  9. }
  10. document.getElementById(div_choix).style.display = 'block';
  11. o.value = div_choix;
  12. }


 
mais ne marche pas sous firefox.
Il semble que  

Code :
  1. o=document.getElementById('div_cat_' + num + '_display')

ca plaise pas. (o has no property)
 
j'ai essayer de creer une    var nom= 'div_cat_' + num + '_display';
 et de retenter avec o =document.getElementById(nom)  masi ca marche pas.
 
Plz help....
Merci d avance.

Reply

Marsh Posté le 30-01-2007 à 13:10:01   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed