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

Newel Posts

Wrought Iron Newel Posts

Steel Twist Post 25x25 H1200

Original price $55.14 - Original price $55.14
Original price
$55.14
$55.14 - $55.14
Current price $55.14

Original price $55.14 - Original price $55.14
Original price
$55.14
$55.14 - $55.14
Current price $55.14

Steel Twist Post 30x30 H1200 3C1

Original price $69.42 - Original price $69.42
Original price
$69.42
$69.42 - $69.42
Current price $69.42

Original price $69.42 - Original price $69.42
Original price
$69.42
$69.42 - $69.42
Current price $69.42

Steel Round Post 30mm H1200 3C1

Original price $93.00 - Original price $93.00
Original price
$93.00
$93.00 - $93.00
Current price $93.00

Original price $93.00 - Original price $93.00
Original price
$93.00
$93.00 - $93.00
Current price $93.00

Steel Baluster Sq30 12x30 H1200

Original price $185.00 - Original price $185.00
Original price
$185.00
$185.00 - $185.00
Current price $185.00

Original price $185.00 - Original price $185.00
Original price
$185.00
$185.00 - $185.00
Current price $185.00
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; }); }); } });