$(() => { // TODO: Check if this is an error in setting up the page // or an expected structure. // // https://oc.test/ls/shipping-bering-strait-region/heavy-fuel-oil/ $('.ls-section.bg-image').each((index, section) => { if ($(section).find('.ls-two-column').length > 0) { $(section).addClass('bg-image-has-columns') } else { $(section).addClass('bg-image-basic') } }) })