Y es que necesito obtener los caracteres de varias cantidades de caracteres con la misma clase.
Lo que tengo hasta hora es esto..
Código
var text = document.getElementsByClassName('text_publicacion'); var text_cant = document.getElementsByClassName('text_publicacion').length; var text_char = []; for(var i = 0; i < text_cant; i++) { text_char[i] = text[i].length; } for(var i = 0; i < text_cant; i++) { if(text_char[i] > 0 && text_char[i] <= 85) { text[i].style.fontSize = "22px"; } } for(var i = 0; i < text_cant; i++) { if(text_char[i] > 85) { text[i].style.fontSize = "15px"; } }
El problema es que siempre que uso un alert o un console.log para ver porque no funciona por ejemplo: hago alert(text[3].length);
sale "Undefined"