top of page

Gates & Shutters

Macquarie Garage Doors supply and install sliding gates, swing gates & window roller shutters for your home in a design of your choosing. With a wide range of styles & colours available they can be incorporated into any new or existing home design with ease. 

bottom of page
// Use requestIdleCallback for better scheduling window.addEventListener('load', function() { requestIdleCallback(function() { const placeElement = document.querySelector('#comp-m8c87nkp'); if (!placeElement) return; // Reserve space to prevent layout shifts placeElement.style.minHeight = '300px'; // Set expected widget height placeElement.style.visibility = 'hidden'; const observer = new IntersectionObserver((entries, observer) => { entries.forEach(entry => { if (entry.isIntersecting) { // Load only when visible and browser is idle requestIdleCallback(() => loadElfsightWidget(placeElement), { timeout: 1000 // Max 1s wait if browser never becomes idle }); observer.unobserve(entry.target); } }); }, { rootMargin: '623px' }); observer.observe(placeElement); }); }); function loadElfsightWidget(container) { // Make container visible container.style.visibility = 'visible'; // Create elements const script = document.createElement('script'); script.src = 'https://static.elfsight.com/platform/platform.js'; script.async = true; script.defer = true; const widget = document.createElement('div'); widget.className = 'elfsight-app-2ccaa7c9-85dc-4adc-9680-0a7b0a90248c'; // Append to DOM container.append(script, widget); }