jQuery UI Buttonset option() Method Last Updated : 10 Jan, 2022 Summarize Comments Improve Suggest changes Share 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 option() method is used for returning an object of key-value pairs that represent the current buttonset options. Syntax: $( ".selector" ).buttonset( "option", optionName, value ); Parameters: This method accepts two parameters that are illustrated below: optionName: This is the name of the option that the user is going to set.value: This is a value to set for the specified option. Return values: This method returns an object of key-value pairs that represent the current buttonset options. 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 option() 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 option() 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_option" style="padding:5px 15px; margin-top:40px;" value="Get the option value"> <div id="log"></div> </center> <script> $(document).ready(function () { $("#ButtonSet_Radio").buttonset(); $("#Button_for_option").on('click', function () { var a = $("#ButtonSet_Radio") .buttonset("option","disabled", true); $("#log").html(a); }); }); </script> </body> </html> Output: Reference: https://api.jqueryui.com/buttonset/#method-option Comment More infoAdvertise with us Next Article jQuery UI Buttonset items Option K Kanchan_Ray Follow Improve Article Tags : Web Technologies JQuery jQuery-UI jQuery-UI-Buttonset Similar Reads jQuery UI Button option() 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 option() method is used to set or return the value currently associated with the specified element. Syntax: opti 2 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 jQuery UI Buttonset refresh() 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 refresh() me 1 min read jQuery UI Button label 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 label option is used to add the label on the button element. Syntax: $( ".selector" ).button({ label: "custom la 1 min read jQuery UI Buttonset items 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 items option 2 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 Like