Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/04/2016, 10:21
miguelcoriperez
 
Fecha de Ingreso: abril-2016
Ubicación: LA PAZ
Mensajes: 2
Antigüedad: 8 años, 9 meses
Puntos: 0
Respuesta: muestra comentario Con con enlace LEER MAS....

var texto, padre;
$(".contenido").each(function(){
texto = $(this).html();
this.setAttribute("data-texto", texto);
if ($(this).html().length > 75){
$(this)
.html(texto.substr(0, 75) + "...")
.append($("<label class = 'mas'>Ver más</label>"));
}
});

$(".mas").on("click", function(){
padre = $(this).parent();
texto = padre.data("texto");
$(padre)
.html(texto)
.css({
width: "50%",
height: "5rem"
});
});

.....talves lo is e de otra forma.........