sromano88

Results 2 comments of sromano88

Same issue with a [email protected] address. It says is not a valid address.

This is what I did as a workaround till validation gets fixed. ``` javascript $("input").not("[type=submit]").jqBootstrapValidation({ filter: function () { if($(this).attr('type') == 'email') return false; return true; } }); ```