Open In App

jQuery Mobile Flipswitch option() Method

JQuery UI  is a web-based technology and consists of GUI widgets, visual effects, and themes implemented using the jQuery, JavaScript Library. jQuery UI is the best tool for building UI interfaces for the webpages. It can also be used to build highly interactive web applications or can be used to add widgets easily.

In this article, we are going to learn the jQuery Mobile Flipswitch option() method. Using this method, we can get, set or update any parameter’s value of the Flipswitch widget. We can also get all the options as key-value pairs using this method.



Syntax:

1. If the user wants any option’s value, the option name should be passed in the option(optionName) method. The optionName should be a string type.



var isEnhanced = $("Selector").flipswitch("option", "enhanced");

Parameter:

Return type: We get the respective return value based on the option data type.

2. To get all the options as the key-value pairs, you just need to call the option() method with no parameter is passed to the method.

var isEnhanced = $("Selector").flipswitch("option", "enhanced");

Return type: This method returns the list of key-value pairs of all the options as optionName-optionValue pairs set.

3. To set the value of any option, you just need to call the option(optionName, value) with the optionName and the value as the parameters.

$("Selector").flipswitch("option", "enhanced", "false");

Parameters:

4. We can also set multiple options instead of only one, you just need to call the option(options) method where options are the list of options.

$("Selector").flipswitch("option", {enhanced: false, disabled: true});

Parameter:

Return type: This method returns the list of key-value pairs of all the options as optionName-optionValue pairs set.

CDN Link: Following are some jQuery Mobile scripts that you will be needed for your project so add these scripts into your project.

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

 Example: This example describes the uses of the jQuery Mobile Flipswitch option() method.




<!doctype html>
<html lang="en">
  
<head>
    <meta charset="utf-8">
    <meta name="viewport"
        content="width=device-width, initial-scale=1">
    <link rel="stylesheet"
        href=
    <script src=
    </script>
    <script src=
    </script>
      
    <script>
    $(document).ready(function() {
        $("#GFG").flipswitch("enable");
        $("#btn").on('click', function() {
            var options = $("#GFG").flipswitch("option");
            document.getElementById('gfg').innerHTML +=
                "No of key/value pair present : " + 
                    Object.keys(options).length + "<br>";
        })
    });
    </script>
</head>
  
<body>
    <center>
        <div data-role="page">
            <div data-role="header">
                <h1 style = "color:green;">GeeksforGeeks</h1>
                <h3>jQuery Mobile Flipswitch option() Method</h3>
            </div>
            <div class="ui-field-contain">
                <form>
                    <div data-role="fieldcontain">
                        <label for="GFG">
                            Flipswitch Checkbox:
                        </label>
                        <input type="checkbox"
                            id="GFG"
                            data-role="flipswitch">
                    </div>
                </form>
            </div>
            <input type="button"
                id="btn"
                style="width: 250px;"
                value="Option">
            <h4><span id="gfg"></span></h4>
        </div>
    </center>
</body>
  
</html>

Output:

jQuery Mobile Flipswitch option() method

Reference: https://api.jquerymobile.com/flipswitch/#method-option


Article Tags :