Cita:
Iniciado por maycolalvarez length es la propiedad que tiene la clase String, no un método, y por tanto no lleva paréntesis.
Código Javascript
:
Ver originalwindow.onload = function(){
este = document.getElementById('fuente');
var texto = este.innerText || este.textContent;
if(texto.length>50){
textOk = texto.substring(0, 50) + '...';
texto = textOk;
}
}
Código HTML:
Ver original<td colspan="2" height="1"><font color="#999" size="1" id='fuente'>{cat_description}
</font></td>
Saludos (: