Major meat processing companies often like to claim that they are forced to use overseas visa workers at their plants because locals simply “don’t want to work”. This claim has been repeated so
Union members at beef processing sites across northern NSW went on multiple strikes across 2013 and 2014, standing together to achieve fantastic pay outcomes in difficult conditions. The actions were
The AMIEU has placed relentless pressure on meat processing operators to pay up what they owe to exploited visa workers and backpackers — and we’re getting results. As of September
Thanks to the tireless efforts of the AMIEU, the dodgy deal cooked up between the corporate-loving SDA union and Coles was officially killed off on May 31 2016. This deal
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
}
});
});