How to use the button and input using jQuery

Hello,

Often introduced attribute "disabled" to forms or to input of the form or other button.

This attribute is no arguments!

To disable it using jQuery should be:
$("input").removeAttr('disabled');

To enable it using the jQuery should be:
$("input").attr('disabled','disabled');


Each of my posts, in a greater or lesser extent relating to the internet programming is always compatible with IE from version 7, Firefox from version 3.6.3, Opera from version 9.63, Safari from version 5.x and Chrome from current version.