Posts tagged 'Class Warfare'

40,000 Aussie Jobs On The Chopping Block As Turnbull Hurries To Sign Trans-Pacific Partnership

Malcolm Turnbull has spent this week vigorously talking up the embattled Trans-Pacific Partnership, a highly secretive global trade agreement designed to enrich the wealthy by exploiting the working classes and…

Read more


Rich and powerful think-tank wants to abolish award system and destroy minimum wage

In a move that will surprise nobody, the Institute of Public Affairs – a free-market think-tank which represents the interests of the rich and powerful – has released a paper…

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