Disable All Form Elements using JQuery

Disable All Form Elements using JQuery

In this tutorial we will see how to Disable All Form Elements using JQuery. JQuery prop() method is used for this which sets the disabled property of all input elements of HTML form.

HTML Code

HTML Code is given below. In this code we have a HTML form with four different types of html input elements.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Disable All Form Elements using JQuery</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
</head>
<body>
<form>
<label>Name:</label>
<input type="text">
<label>Email:</label>
<input type="email">
<label>Gender:</label>
<select>
<option>Male</option>
<option>Female</option>
</select>
<input type="submit" value="Submit">
</form>
</body>
</html>

JQuery Code

JQuery Code is given below, JQuery prop() method is used in this code, JQuery prop() method sets and returns properties and values of the selected elements.

In this example prop() method will set the disabled property of all input HTML elements inside the form which will disable them.

<script>
$(document).ready(function(){
$("form :input").prop("disabled", true);
});
</script>

Demo

Video Tutorial

Watch video tutorial on how to Disable All Form Elements using JQuery.

Post a Comment

Previous Post Next Post