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.

link|improve this question

feedback

4 Answers

up vote 11 down vote accepted
var inputs = document.getElementsByTagName("INPUT");
for (var i = 0; i < inputs.length; i++) {
    if (inputs[i].type === 'submit') {
        inputs[i].disabled = true;
    }
}
link|improve this answer
feedback

Have you tried

document.getElementsByTagName("input");

then you could interrogate the DOM to find your submit button. getElementsByTagName reference

A full sample

window.onload = function(e) {
    var forms = document.getElementsByTagName('form');
    for (var i = 0; i < forms.length; i++) {
        var input = forms[i].getElementsByTagName('input');
        for (var y = 0; y < input.length; y++) {
            if (input[y].type == 'submit') {
                input[y].disabled = 'disabled';
            }
        }

    }
}
link|improve this answer
Wow, in the time it took me to write that you got 4 answers ;) Guess it must have been an easy question ! :) – David Christiansen Jul 29 '09 at 18:24
thanks, but two things: you have a hard-coded "input[0]" that needs to be "input[i]", and .toLowerCase() apparently isn't necessary (at least for me in FF 3.5.1). – Kip Jul 29 '09 at 18:32
Fair comment Kip, Updated code. – David Christiansen Jul 29 '09 at 19:06
Why was this down voted, out of curiosity... – David Christiansen Jul 30 '09 at 8:41
feedback

This is untested, but it or something very similar should work. It could be made better with error and feature checking.

var inputs = document.getElementsByTagName('input');

for(var i = 0; i < inputs.length; i++){
  if(inputs[i].type == 'submit'){
    inputs[i].disabled = 'disabled';
  }
}
link|improve this answer
needs to be "var i" in javascript, not "int i" – Kip Jul 29 '09 at 18:28
haha, whoops. Too many languages floating in my brain! – Phairoh Jul 29 '09 at 19:08
feedback
var els = document.getElementsByTagName ( 'input' );
for ( var i = 0; i < els.length ; i ++ ) {
 if ( els[i].type == 'submit' ) els[i].setAttribute('disabled', 'true'); 
}
link|improve this answer
this gives error "els[i].setattribute is not a function" – Kip Jul 29 '09 at 18:27
It's setAttribute (captial 'A'). I corrected the code. – Patrick McElhaney Jul 29 '09 at 18:34
ok, downvote revoked. :) – Kip Jul 29 '09 at 18:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.