Inspire. Transform. Motivate.

×

 

Welcome.

Do you have any questions? Chat with me on WhatsApp.​

×
jQuery(document).ready(function($) { // Target specific accordion item var accordionToHide = $('.accordion-enquiry-form'); // Accordion to hide // Listen for the 'open' event on the accordion $('.nestable-accordion').on('accordionOpen', function(event, item) { // If pricelist accordion is opened, hide the enquiry form if ($(item).hasClass('.accordion-pricelist')) { accordionToHide.slideUp(); } else { accordionToHide.slideDown(); // Optionally, show it when the first one closes } }); });