« March 2010 | Main | May 2010 »

April 23, 2010

Email address regex

This fails for paul,hollands@thingmail.com as it still matches on a substring hollands@thingmail.com:
onblur="if(/[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?/
.match(this.value)){ var blah = ''; } else { poppy('Your email address appears to be invalid.'); this.value = ''; }"
This fixes the issue.
onblur="if(/[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?/
.exec(this.value) == this.value){ var blah = ''; } else { poppy('Your email address appears to be invalid.'); this.value = ''; }"

Posted by pj at 10:50 AM | Comments (0)

April 22, 2010

Mortgage Calculator

Mortgage Calculator

Posted by pj at 08:04 AM | Comments (0)

April 16, 2010

NiceEdit WYSIWYG Editor

NicEdit - WYSIWYG Content Editor, Inline Rich Text Application

Posted by pj at 03:17 PM | Comments (0)

April 05, 2010

O2 Dongle on Ubuntu

O2 Forum :: View topic - PAYG E160 in Ubuntu 8.10


Number: *99#
Username: o2web
Password: password
APN: m-bb.o2.co.uk

Posted by pj at 09:02 AM | Comments (0)