1

jQuery UI Buttonset enable() Method

 3 weeks ago
source link: https://www.geeksforgeeks.org/jquery-ui-buttonset-enable-method/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

jQuery UI Buttonset enable() Method

Last Updated : 07 Jan, 2022

jQuery UI consists of GUI widgets, visual effects, and themes implemented using HTML, CSS, and jQuery. jQuery UI is great for building UI interfaces for the webpages. The jQuery UI buttonset widget is used to give a visual grouping for a group of related buttons.

The jQuery UI buttonset enable() method is used for enabling the buttonset widget.

Syntax:

$( ".selector" ).buttonset( "enable" );

Parameters: This method does not accept any parameter.

Return values: This method does not return any values.

CDN Link: First, add jQuery UI scripts needed for your project.

<link rel=”stylesheet” href=”//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css”>
<script src=”//code.jquery.com/jquery-1.12.4.js”></script>
<script src=”//code.jquery.com/ui/1.12.1/jquery-ui.js”></script>

Example: This example demonstrates the jQuery UI buttonset enable() Method.

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href=
"//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
<script src=
"//code.jquery.com/jquery-1.12.4.js">
</script>
<script src=
"//code.jquery.com/ui/1.12.1/jquery-ui.js">
</script>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h3>jQuery UI Buttonset enable() method</h3>
<form>
<fieldset>
<legend>Button_Set</legend>
<div id="ButtonSet_Radio">
<input id="Company" type="radio" 
checked="checked">
<label for="Company">GeeksforGeeks</label>
<input id="Department" type="radio">
<label for="Department">Computer Science</label>
</div>
</fieldset>
</form>
<input type="button" id="Button_for_enable" 
style="padding:5px 15px; margin-top:40px;"
value="Enable the Widget">
</center>
<script>
$(document).ready(function () {
$("#ButtonSet_Radio").buttonset({
disabled: true
});
$("#ButtonSet_Radio").buttonset("option", "disabled", true);
$("#Button_for_enable").on('click', function () {
$("#ButtonSet_Radio").buttonset("enable");
});
});
</script>
</body>
</html>

Output:

jQuery UI Buttonset enable() Method

Reference: https://api.jqueryui.com/buttonset/#method-enable

Here's a complete roadmap for you to become a developer: Learn DSA -> Master Frontend/Backend/Full Stack -> Build Projects -> Keep Applying to Jobs

And why go anywhere else when our DSA to Development: Coding Guide helps you do this in a single program! Apply now to our DSA to Development Program and our counsellors will connect with you for further guidance & support.

Like Article
Suggest improvement
Share your thoughts in the comments

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK