Hy there, I've got a little problem with my formhandling here. I try to block the submit Button (ID:#submitForm) until any field in the formular has been changed. Here's my jQuery Code :
// block submit until change
$('#submitForm').prop('disabled', true);
$(':input').change(function() {
$('#submitForm').prop('disabled', false);
});
And in the site :
<input id="submitForm" type="submit" value="Send Form">
If the User changes any of the other Inputfields the Submit should be enabled to post the changes, a simple alert"MSG" does well but not the release of the disabled property.
Thanks a lot, DR