Skip to content
All orders please email: sales@apexfencingsupply.com.au or Call/Text: 0432886443
All orders please email: sales@apexfencingsupply.com.au or Call/Text: 0432886443

Glass Panels

Filters

$
$

Heat Soaked Balustrade Glass W=875-1650mm

Original price $50.42 - Original price $95.07
Original price
$50.42 - $95.07
$50.42 - $95.07
Current price $50.42

Original price $50.42 - Original price $95.07
Original price
$50.42 - $95.07
$50.42 - $95.07
Current price $50.42

Heat Soaked Balustrade Glass W=1700-2000mm

Original price $97.95 - Original price $115.24
Original price
$97.95 - $115.24
$97.95 - $115.24
Current price $97.95

Original price $97.95 - Original price $115.24
Original price
$97.95 - $115.24
$97.95 - $115.24
Current price $97.95

Heat Soaked Balustrade Glass W=200-850mm

Original price $11.52 - Original price $48.98
Original price
$11.52 - $48.98
$11.52 - $48.98
Current price $11.52

Original price $11.52 - Original price $48.98
Original price
$11.52 - $48.98
$11.52 - $48.98
Current price $11.52
document.addEventListener('DOMContentLoaded', () => { const productJson = [...document.querySelectorAll('[id^=ProductJson-')]; if (productJson.length > 0) { productJson.forEach((product) => { const sectionId = product.id.replace("ProductJson-", "shopify-section-"); const variantSKU = document.querySelector('#' + sectionId + ' .variant-sku'); const inputSelects = [...document.querySelectorAll('#' + sectionId + ' .single-option-selector')]; const productInfo = JSON.parse(product.innerHTML); const inputValues = []; const optionValues = []; let count = 0; inputSelects.forEach((input) => { inputValues.push(input.value); optionValues.push(count); input.addEventListener('change', (evt) => { const currentValue = evt.currentTarget.value.toString(); const changedIndex = inputSelects.indexOf(evt.target); inputValues[changedIndex] = currentValue; variantSKU.innerText = ' '; productInfo.variants.forEach((variant) => { if (JSON.stringify(variant.options) == JSON.stringify(inputValues)) { variantSKU.innerText = variant.sku; } }); }); count += 1; }); }); } });