Removing html5 required attribute with jQuery

Just:

$('#edit-submitted-first-name').removeAttr('required');​​​​​

If you’re interested in further reading take a look here.

Leave a Comment