/* * Turns any drupal errors or warnings in to javascript alert pop-ups */ $(document).ready( function() { messageListener(); } ); function messageListener() { if($('#msg_box').text() != '') { $('#msg_box').hide(); alert($('#msg_box').text()); //focus the first required field with an error $('.required.error').get(0).focus(); } }