To disable form fields in jquery

I don’t think the current jquery syntax to enable/disable form elements is intuitive. But here it is:

$("#my_element").attr("disabled", "disabled");  // to disable
$("#my_element").removeAttr("disabled");  // to enable

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s