Posts tagged 'Financial Reporting'

Financial Report 2017-2018

In accordance with Section 263 of the Industrial Relations Act 1996 and Section 265 of the Fair Work (Registered Organisations) Act 2009, a copy of the financial statements of the…

Read more


Financial Report 2016-2017 (Federal)

In accordance with Section 263 of the Industrial Relations Act 1996 and Section 265 of the Fair Work (Registered Organisations) Act 2009, a copy of the financial statements of the…

Read more


Financial Report 2015-2016 Federal

In accordance with Section 263 of the Industrial Relations Act 1996 and Section 265 of the Fair Work (Registered Organisations) Act 2009 a copy of the financial statements of the…

Read more


document.addEventListener('DOMContentLoaded', function() { // Adjust the selector if you have multiple forms const form = document.querySelector('.elementor-form'); if (!form) return; // Stop if no form found // Get the BSB field by Field ID const bsbField = form.querySelector('#bsb'); // #bsb = Field ID from Step 1 if (!bsbField) return; form.addEventListener('submit', function(e) { const bsbValue = bsbField.value.trim(); const regex = /^\d{3}-\d{3}$/; // Matches 000-000 format if (!regex.test(bsbValue)) { alert('Please enter a valid BSB in the format 000-000'); bsbField.focus(); e.preventDefault(); // Stop form submission } }); });