While playing around with some php for an Email design I notice an issue with the type=”email” setting.
With the following code I have no problem when you input an email address.
<input id="m1-emailmsg-cf_email" class="m1-textfield m1-textfield-custom" value=""
type="text" name="cf_email" placeholder="email"/>
But when I set the type=”email”, the cf_email variable is always blank (has nothing in it).
<input id="m1-emailmsg-cf_email" class="m1-textfield m1-textfield-custom" value=""
type="email" name="cf_email" placeholder="email"/>
Is it something I am doing wrong??