miércoles, 10 de agosto de 2011

javascript: comprobarLong

function comprobarLong(text, LONGMAXIMA) {


var body;
if (text.length > LONGMAXIMA)
{
body = text.substring(0, LONGMAXIMA - 2);
body += "..";
return body;
}
else
{
return text;
}
}

No hay comentarios:

Publicar un comentario