DO YOU NEED A CONTENT WRITER FOR YOUR BUSINESS?

Your One-Stop Solution for All Content Needs! Click here for more!
Categories: jQuery

Enable or disable an input field with jQuery

Share

Using jQuery prop() method you can enable or disable a form element. From jQuery 1.6+ you can use jQuery prop() method.

You can enable or disable an elements on a page dynamically with jQuery by setting their attributes accordingly.

For jQuery 1.5 and below the .prop() function doesn’t exist, but .attr() method does similar thing.

Disable a Control:

$( "#elementID" ).prop( "disabled", true );

Enable a Control:

$( "#elementID" ).prop( "disabled", false );

Also Read:

Using .attr():

Set the disabled attribute:

$("input").attr('disabled','disabled');

To enable again you can use .removeAttr():

$("input").removeAttr('disabled');

This will totally remove the disabled attribute from the element instead of blanking it out.

Read jQuery reference for more details.

Namaste UI

For any types of queries, you can contact us on info[at]namasteui.com.

Recent Posts

Flawless Prize Fulfilment and Management That Takes Your Marketing Campaigns to the Next Level

In today’s fast-paced and highly competitive marketing environment, even the most creative campaign is only…

1 day ago

Moving company Zeromax in NYC

We are NYC moving firm. Are you planning a flat move? Maybe a distance or…

5 days ago

Mobile testing: An important task for smooth functioning of the device

Mobile devices, unlike desktops and laptops, can not be handled by dozens or hundreds of…

6 days ago

Augmented Reality in Education is Blowing Up the Candles!

Augmented Reality- An immersive experience for the learners! Learning and education aren’t the same as…

1 week ago

Here Are 4 Diamond Studs for You to Gift Your Special Ones

On special days like birthdays and weddings, we all like to celebrate our loved ones…

1 week ago

7 Best Web Application Development Tools

A web application is different from a regular mobile or desktop application as it runs…

1 week ago