treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Disable / Re-enable Inputs

Last updated on:

Disable:

$("#submit-button").attr("disabled", true);

Re-enable:

$("#submit-button").removeAttr("disabled");
View Comments

Comments

  1. You can also use the .prop() function.

    A simple


    $("#submit-button").prop('disabled', true);
    $("#submit-button").prop('disabled', false);

    will also do then.

  2. David
    Permalink to comment#

    .prop does not work in IE

Leave a Comment

Use markdown or basic HTML and be nice.