jQuery UI Buttonset disable() Method Last Updated : 07 Jan, 2022 Comments Improve Suggest changes Like Article Like Report 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 disable() method is used for disabling the Buttonset widget. Syntax: $( ".selector" ).buttonset( "disable" ); 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 disable() Method. HTML <!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 disable() 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_disable" style="padding:5px 15px; margin-top:40px;" value="Disable the Widget"> </center> <script> $(document).ready(function () { $("#ButtonSet_Radio").buttonset(); $("#Button_for_disable").on('click', function () { $("#ButtonSet_Radio").buttonset("disable"); }); }); </script> </body> </html> Output: Reference: https://api.jqueryui.com/buttonset/#method-disable Comment More infoAdvertise with us Next Article jQuery UI Buttonset disable() Method K Kanchan_Ray Follow Improve Article Tags : Web Technologies JQuery jQuery-UI jQuery-UI-Buttonset Similar Reads jQuery UI Button disable() Method 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 Button disable() method is used to disable the button widget. It does not accept any parameter. Syntax: $(".selector"). 1 min read jQuery UI Buttonset enable() Method 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() met 1 min read jQuery UI Button enable() Method 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 Button enable() method is used to enable the disabled button element. It does not accept any parameter. Syntax: $(".sel 1 min read jQuery UI Buttonset disabled Option 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 disabled opt 2 min read jQuery UI Buttonset destroy() Method 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 destroy() me 1 min read jQuery UI Button disabled Option 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 Button disabled option is used to disable the button element if it set to true. Syntax: $( ".selector" ).button({ disab 1 min read jQuery UI Button destroy() Method 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 Button destroy() method is used to remove the button functionality completely from the button widget. It does not accep 1 min read jQuery UI Controlgroup disable() Method jQuery UI consists of GUI widgets, visual effects, and themes implemented using jQuery, CSS, and HTML. jQuery UI is great for building UI interfaces for the webpages. A control group is used to group various input widgets like checkboxes, buttons, etc. The control group helps to apply common propert 1 min read jQuery UI Accordion disable() Method To disable an accordion in jQuery UI we will be using disable() method which is discussed below: jQuery UI disable() Method is used to completely disable the accordion. It returns the accordion element completely to its initial state. Syntax: $( ".selector" ).accordion( "disable" )Parameters: This m 1 min read jQuery UI Buttonset widget() Method 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 widget() met 1 min read Like