Remove HTML5 validation

Permalink
How can I turn off the HTML5 validation that Concrete5 adds into forms?

Thanks
Jake

yolk
 
yolk replied on at Permalink Best Answer Reply
yolk
Best solution so far seems to be:

$question['input'] = str_ireplace('type="email"', 'type="text"', $question['input']);
$question['input'] = str_ireplace('type="tel"', 'type="text"', $question['input']);