Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

jQuery UI Controlgroup option(options) Method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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 controlgroup is used to group various input widgets like checkbox, button, etc. The control group helps to apply common properties to all the elements of a form.

The jQuery UI Controlgroup option(options) method is used to set one or more options for the controlgroup widget.

Syntax:

$( ".selector" ).controlgroup( "option", { disabled: true } );

Parameters: It accepts single parameter options that holds a map of option-value pairs to set.

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 describes the uses of jQuery UI Controlgroup option(options) method.

HTML




<!DOCTYPE html>
<html lang="en">
  
<head>
    <meta charset="utf-8">
    <link rel="stylesheet" href=
"//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
    </script>
    <script src=
    </script>
  
    <script>
        $(document).ready(function () {
            $("#GFG").controlgroup();
  
            $("#btn").on('click', function () {
                $("#GFG").controlgroup("option", { disabled: true });
            });
        });
    </script>
</head>
  
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
        <h3>jQuery UI Controlgroup option(options) Method</h3>
  
        <div id="GFG">
            <label for="radio_1">Men</label>
            <input type="radio" name="type" id="radio_1">
            <label for="radio_2">Women</label>
            <input type="radio" name="type" id="radio_2">
            <select>
                <option>Cricket</option>
                <option>Hockey</option>
                <option>Tennis</option>
                <option>Football</option>
            </select>
            <label for="official">Official</label>
            <input type="checkbox" name="official" id="official">
        </div>
        <br>
  
        <input type="button" id="btn" 
            style="padding: 5px 15px; margin-top: 50px;" 
            value="Set option() Method Value">
    </center>
</body>
  
</html>

Output:

Reference: https://api.jqueryui.com/controlgroup/#method-option


My Personal Notes arrow_drop_up
Last Updated : 23 Dec, 2021
Like Article
Save Article
Similar Reads
Related Tutorials