The member for Page, Janelle Saffin, is welcoming this morning’s news on a live cattle export ban. The Federal government will today announce a ban on all live cattle exports
http://ohs.hussainm132.sg-host.com The new OHS website has been built by Australasian Meat Industry Employees Union Newcastle and Northern Branch (AMIEU) to support Occupational Health & Safety in the Meat Industry. The
The development of the OHS booklet was managed by the AMIEU Newcastle and Northern Branch as part of a project funded under the WorkCover NSW WorkCover Assist Program. The book
Live Exports, Jobs, and The Economy: a solution to the live animal export trade For more information or to join this cause visit http://moveforward.org.au
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
}
});
});