I'm using the jQuery-Mask-Plugin in my application and using that I was able to successfully add masks to telephone numbers, date time .. etc.
$("#date").mask("99/99/9999",{placeholder:"mm/dd/yyyy"});
$("#phone").mask("(999) 999-9999");
But I could not find a way to add masks to email addresses and web site addresses.
I know it is some what tricky to identify exact patterns in those but is there any way in jQuery-Mask-Plugin
to do that ?