- Home
- Categorie
- Coding e Sistemistica
- HTML e CSS
- getElementById su firefox è undefined
-
getElementById su firefox è undefined
Ciao a tutti,
ho un problemuccio con questo codice javascript:var numero_set = document.getElementById('ajax-banner').value; alert(numero_set);
Che dovrebbe andare a prendere il valore che è in questo div:
<div id="ajax-banner" value=150></div>Non capisco perchè con explorer l'alert mi restituisce il valore che è nell'id del div (150), al contrario firefox mi restituisce undefined?
Ho provato a cercare nel forum... ma non ho trovato niente
aiutatemi please
-
Ce l'ho fatta
per i posteri:
var numero_set = document.getElementById("ajax-banner").getAttribute('name');
e nel div:
<div id="ajax-banner" name="1"></div>
Grazie della sopportazione e scusatemi!