calin-beard
11/13/2017 - 4:28 PM

Remove email validation from field

Remove email validation from field

<!-- START code to remove email validation -->
<script>
ijQuery(document).ready(function(){
      //define email field label
      var fieldLabel = 'Email';
      //change the input type from email to text
  	  ijQuery("input[name='" + base64_encode(fieldLabel) + "']").attr( 'type','text' );
});
</script>
<!-- END code to remove email validation -->