
Chevrolet Silverado & GMC Sierra 1500 (2019+) - Bundle Builder
No reviews
Please do not edit this description field. If this field is edited in any way, customers will not be redirected to the page to customize their bundles.
`;
// Convert string of HTML into a temporary DOM element
const tempDiv = document.createElement('div');
tempDiv.innerHTML = productDescriptionHTML;
const headers = tempDiv.querySelectorAll('h3');
let outputHtml = '';
headers.forEach(header => {
const content = header.nextElementSibling.outerHTML;
// Create accordion structure using your provided format
outputHtml += `
${header.innerText}
${content}