SM
Size: a a a
SM
LE
SM
А
SM
А
А
I
SM
SM
SM
I
SM
I
SM
I
SM
IS
I
AC
var orgContent = $('.services-item-description p').html();
var txtContent = $('.services-item-description p').text().substr(0, 50) + '... <a class="morelink">more</a>';
$('.services-item-description p').html(txtContent);
$("body").on("click", '.morelink', function(){
$('.services-item-description p').html(orgContent);
$('<a class="lesslink"> less</a>').appendTo('.services-item-description p');
});
$("body").on("click", '.lesslink', function(){
$('.services-item-description p').html(txtContent);
});