I have a basic empty form and would like to only show the submit button once:
- Data has been entered into the form.
- All required/va
There is no function in jQuery to do this. You need to bind an event to the submit of this form or to each of the fields and validate the required fields text length and if all are greater 0. then you can submit the form or fade in the submit button.
The submnit event will be triggered when you hit an enter inside the form in any one of the fields.
Take a look at this link.
http://api.jquery.com/submit/