Posts tagged 'Fair Work Ombudsman'

Workplace Exploitation Continues In Poultry Industry, Even As Compliance Improves

This week’s announcement by the Fair Work Ombudsman of their interim findings into underpayments at Baiada offers a chance to reflect on the progress of tackling systemic workplace exploitation issues…

Read more


Fair Work Ombudsman Finally Acknowledges Overwhelming Evidence of Backpacker Exploitation

The Fair Work Ombudsman this weekend released a damning report into the conditions of 417 working holiday visa holders around Australia, highlighting brutal exploitation, criminal underpayment, and an environment of…

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 } }); });