Shop
This is where you can browse products in this store.
jQuery(document).ready(function() {
var paragraph = jQuery(".paragraph>p");
var paragraphHeight = paragraph.height();
var lineHeight = parseInt(paragraph.css('line-height'), 10);
var numberOfLines = paragraphHeight / lineHeight;
console.log(numberOfLines);
if(numberOfLines > 2){
jQuery("#readMore").click(function() {
jQuery(".paragraph").toggleClass("show-all");
if (jQuery(".paragraph").hasClass("show-all")) {
jQuery("#readMore").text("Hide");
} else {
jQuery("#readMore").text("Read More");
}
});
}else{
jQuery("#readMore").css("display","none");
}
});