prop()
methodYou can simply use the jQuery prop()
method to disable or enable form elements or controls like <input>
, <select>
, <textarea>
, etc. dynamically using jQuery.
The prop()
method require jQuery 1.6 and above. Let's see how this works:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Disable or Enable an Input with jQuery</title>
<style>
label {
display: block;
margin: 10px 0;
}
</style>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>
$(document).ready(function(){
$('form input[type="submit"]').prop("disabled", true);
$(".agree").click(function(){
if($(this).prop("checked") == true){
$('form input[type="submit"]').prop("disabled", false);
}
else if($(this).prop("checked") == false){
$('form input[type="submit"]').prop("disabled", true);
}
});
});
</script>
</head>
<body>
<form>
<label>Name: <input type="text" name="username"></label>
<label>Email: <input type="email" name="email"></label>
<label><input type="checkbox" class="agree"> I agree to terms and conditions.</label>
<input type="submit" value="Submit">
</form>
</body>
</html>
Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]
Laravel 8 get all Files in Directory Example
You may want to get images from server a...How To Install and Secure MongoDB on Ubuntu
MongoDB is open-source, free and No...Laravel 8 Generate Fake Data Using Faker Example
Sometimes you are testing project in loc...How to compare two array values in PHP
Use the PHP array_diff() funct...Google Firebase Push Notification in Laravel
Today our leading topic is laravel fireb...