I’m wanting to have two IDs in one if statement, like this:
if ($(this).attr("id") === "canopy-7-select" || "canopy-7-lc-select") {
$(".canopy-7-image, .ao-c7").show();
} else { $('.canopy-7-image, .ao-c7').hide(); }
But I’m not sure how to make this work. Any ideas where I’m going wrong?
Thank you in advance.