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
Following on from Alan Buchanan's answer, this might work:
$('#yourform input,#yourform textarea').bind('oninput', function(){ if ($('#yourform').valid()) $('#submitButton').fadeIn(); });
- Notes and reference.