I use this
<a class="waves-effect waves-light btn disabled">Submit</a>
to prevent users submitting the form if they do not input according to the validation rules.
However, when I inspect element through google chrome and just remove the disabled
class from the source.
Boom, the button turns to an active
button.
So I am just wondering how to prevent this?
Thanks.