Open In App

jQuery Mobile Textinput option() Method

Last Updated : 20 Jan, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops.

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

Syntax:

1. If we need any option’s value, pass the option name in the option (optionName) method. The optionName should be a string.

  • optionName: It is the input that we need to pass in form of a string for which we need to get the value.
  • Return Type: We get the respective return based on the option data type.
var isDisabled = $( ".selector" ).textinput( "option", "disabled" );

2. Get all the options with their values as key-value pairs by just calling the option method with no parameters.

  • input: We need to call the option method. Nothing should be passed as input.
  • Return Type: We get the list of key-value pairs of all the options as optionName – optionValue.
var options = $( ".selector" ).textinput( "option" );

3. Set the value of any option by calling the option(optionName, value) with the optionName and the value as parameters

  • optionName: The option name is the first parameter, which is of string type.
  • value: While calling the method, we need to pass the option’s value, which is of the object type.
$(".selector").textinput( "option", "disabled", true );

4. To set multiple options instead of only one, call the option(options) method where options are the list of options.

  • options: It is the map of the optionName-value pairs to set the options corresponding to the values passed, which is of the object type.
$( ".selector" ).popup( "option", { disabled: true } );

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

<link rel=”stylesheet” href=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css”>
<script src=”https://code.jquery.com/jquery-1.10.2.min.js”></script>
<script src=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js”></script>

Example: This example describes the jQuery Mobile Textinput option() Method.

HTML




<!doctype html>
<html lang="en">
  
<head>
    <link rel="stylesheet" href=
    <script src=
    </script>
    <script src=
    </script>
</head>
  
<body>
    <center>
        <div data-role="page">
            <h1 style="color:green;">
                GeeksforGeeks
            </h1>
            <h3>jQuery Mobile Textinput option() Method</h3>
            <div data-role="header">
            </div>
            <div role="main" class="ui-content" 
                 style="width: 50%;">
                <label for="GFG">Enter Text:</label>
                <textarea name="Geeks" 
                          id="GFG">
                  </textarea>
            </div>
            <input type="button" id="Button" 
                   value="Get the value">
            <div id="log"></div>
        </div>
    </center>
    <script>
        $(document).ready(function () {
            $("#Button").on('click', function () {
                var a = $("#GFG")
                    .textinput("option", "disabled");
                $("#log").html('The value is: ' + a);
            });
        });
    </script>
</body>
  
</html>


Output:

jQuery Mobile Textinput option() Method

jQuery Mobile Textinput option() Method

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



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads