How would I do this without jQuery?
$('input[type=submit]').attr('disabled',true);
It doesn't have to be cross-browser compatible; a solution that only works in Firefox is OK.
|
How would I do this without jQuery?
It doesn't have to be cross-browser compatible; a solution that only works in Firefox is OK.
| ||||
|
feedback
|
| |||
|
feedback
|
|
Have you tried
then you could interrogate the DOM to find your submit button. getElementsByTagName reference A full sample
| |||||||||
feedback
|
|
This is untested, but it or something very similar should work. It could be made better with error and feature checking.
| |||||
|
feedback
|
| |||||||
|
feedback
|