I'm trying to limit the characters in a block, and I've managed to do it like this (I've followed this solution)
$(".nome-produto").text($(this).text().substr(0, 70)+'...');
It's working as needed, but the problem is I have multiple items, and the text is being copied...
The printscreen is here
Any clues?