$(document).ready(function () { $("input[name='obpid']").change(function () { // let sizeSelected =$('input[name=obpid]:checked').parent('label').text(); let treePrice = $(this).attr("data-p"); let discountPrice = $(this).attr("data-pid"); if (discountPrice !== "") { $("#discounted-tree-price").text("$" + discountPrice); $("#covid-discount-text").show(); } else { $("#discounted-tree-price").text(""); $("#covid-discount-text").hide(); } $("#flex-tree-price").text("$" + treePrice); dataLayer.push({ event: "gaEvent", category: "Store", action: "Option Click", label: "" + $(this).attr("id"), }); }); $(document).on("click", ".accordion", function () { let arrow = $(this).children(); var panel = $(this).next(); if ($(panel).css("max-height") !== "0px") { $(panel).css("max-height", "0px"); $(arrow).removeClass("up"); } else { $(panel).css("max-height", $(panel).prop("scrollHeight") + "px"); $(arrow).addClass("up"); } }); $(".active-tab").click(); });