When you submit a form via a submit button, the submit button's name and
value are posted along with the form data. The Submit component relies
on this information to determine whether or not to trigger its own
listener. In HTML, when a form element is disabled, its name and value
are not pos
Hi all,
I have a requirement that when the user clicks on the
submit button for a form that the button be disabled so
they won't/can't click it again before the next page
appears. Sounds simple enough. I put some javascript
like this:
function disable( input ) {
input.disable=true;
}
To te