I am currently using the html attribute type email to make a text box open up on a mobile device using the email keyboard. I already have custom email attributes to validate the email address but now it is using the validation that comes with using type email. When I tab off the email field it gives me the message "Please enter a valid email address." with a red box. I want to remove the validation that comes out of the box when using type email. I have already added the novalidate attribute and this does not work.
Does anyone have an alternative to making the email keyboard show up on mobile devices without using the attribute type email?
<form novalidate="novalidate">
<input type="email" name="email">
</form>
This code will still do out of the box validation when tabbing off the email field.