Question:Which of the following is the correct way to disable an input field with jQuery?
A $("input").attr('disabled','disabled');
B $("input").css('disabled','disabled');
C $("input").attr('disable','disable');
D $("input").('disabled');
+ AnswerA
+ Report