The input type = email tag in html5 works even if the top level domain name is not present
<form action = "yourPage" method = "get">
<input type = 'email' name ="emailName" >
<input type = 'submit'>
</form>
for eg: if we type
foo@bar
instead of
foo@bar.com
The form will be submitted. Can anyone explain why it behaves like this.