JavaScript Disable Button After Click

In this tutorial we will see how to Disable Button After Click with JavaScript. HTML disabled Attribute and JavaScript this keyword can be used for this purpose.

JavaScript this keyword

The JavaScript this keyword refers to an element or object.

In this example this keyword refers to the button tag which has triggered the click event.

HTML disabled Attribute

The HTML disabled Attribute is used to disable or enable the html elements.

HTML disabled Attribute is a Boolean attribute. The disable attribute is set to true to disable the html element and it is set to false to enable the html element.

In this example this disabled attribute is used to disable the button after click.

HTML Code

HTML Code is given below, This code contains a button tag with onclick event.

<button onclick="disable(this)">Disable Me</button>    

JavaScript Code

JavaScript Code is given below, on button click this code will be executed which will disable the button itself using the disabled attribute.

x refers to the clicked button.

<script>
function disable(x)
{
    x.disabled = true;
}
</script>

Demo

Video Tutorial

Watch video tutorial on how to Disable Button After Click using JavaScript.

Change font-size using JavaScript Get Font Size of any Tag using JavaScript Change Position of HTML Element using JavaScript How to Change Image on Hover with JavaScript How to Disable Button by Class Name in JavaScript How To Change Image Size with JavaScript How to change Image opacity with JavaScript How to Change image src on click with JavaScript How to get the lang attribute value in JavaScript How to Get attribute Value using JavaScript How To Check if Attribute Exists or not with JavaScript How To Count number of links on Page with JavaScript How To Scroll Page to Bottom using JavaScript How To Detect Shift Key Press with JavaScript Change Text Color On Hover with JavaScript Hide and Show div using JavaScript Get Button text with JavaScript Get textarea value with JavaScript Get table row Height with JavaScript Auto Increase width of input field with JavaScript Set Textarea maxLength with JavaScript Set Textarea Value with JavaScript JavaScript Count list items JavaScript set input field value Count Button Clicks with JavaScript Scroll Page to the Top on Click with JavaScript