|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
/*start show more el height btn*/ $("[data-more-content]").each(function (index, el) { if ($(this).height() <= 250) { $(this).parent().find(".more-text__btn").remove(); } else { $(this).css({ maxHeight: "200px" }); } }); $(document).on('click', '[data-more-btn]', function (event) { event.preventDefault(); /* Act on the event */ var thLink = $(this).attr('data-more-btn'), hidenTxt = $(document).find('[data-more-content="' + thLink + '"]'); if (hidenTxt.hasClass('active')) { hidenTxt.removeClass('active'); $(this).text(objTxtSite.more_close); } else { hidenTxt.addClass('active'); $(this).text(objTxtSite.more_open); } }); $(window).resize(function () { if (document.documentElement.clientWidth > 991) { $(".more-text").removeAttr("style"); } }); /*end show more el height btn*/ |
