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