AMIEU Journal Archive

Members of the AMIEU receive two printed Journals each year advising them of the latest news and current events, as well as union activity in the meat processing sector around Australia and beyond.

PDF copies of our most recent Journals can be downloaded from the below links:

The AMIEU maintains a copy of all Journals ever released, stretching back decades. Members who would like to browse copies of these older Journals for historical purposes may do so by visiting the office. Contact us to organise a visit.


Join Online Now

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