Get in touch with us

We would love to connect with you and hear your feedback and suggestions. Please don't hesitate. We look forward to hearing from you!

$(document).ready(function() { $(".product").each(function(){ let this_product = $(this); this_product.find(".toggle").click(function() { let elem = this_product.find(".toggle").text(); if (elem == "Read More") { this_product.find(".toggle").text("Read Less"); this_product.find(".text").slideDown(); } else { this_product.find(".toggle").text("Read More"); this_product.find(".text").slideUp(); } }); }); });