mariusbutuc

MariusButuc

Feb 19th, 2010
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. document.observe("dom:loaded", function() {
  2.   $('editProfile').observe('submit', function(event) {
  3. @@    var filter = /^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;
  4.     if (!filter.test($F('email'))) {
  5.       console.log('Please provide a valid email address');
  6.       $('email').select();
  7.       event.stop();
  8.     }
  9.   });
  10. });
Add Comment
Please, Sign In to add comment