jQuery UI Autocomplete change Event

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 Autocomplete widget is used to perform autocomplete enables to quickly find and select from a pre-populated list of values as they type, leveraging searching and filtering.

The jQuery UI Autocomplete change event is used to trigger when the search field is blurred and the value has changed. 

Syntax:

Initialize the autocomplete with the change callback specified:

$( ".selector" ).autocomplete({
      change: function( event, ui ) {}
});

 

Bind an event listener to the autocompletechange event:

$( ".selector" ).on( 
    "autocompletechange", 
    function( event, ui ) {} 
);

Parameters: It accepts a callback function that holds two parameters.

  • event: It accepts Event type value.
  • ui: It accepts Object type value.
    • item: It is the item selected from the menu list otherwise the property is null.

Approach: 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 Autocomplete change event.

HTML




<!DOCTYPE html>
<html>
  
<head>
    <meta charset="utf-8">
    <meta name="viewport" content=
        "width=device-width, initial-scale=1">
    <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>
  
    <script>
        $(function () {
            var subjects = [
                "HTML",
                "CSS",
                "JavaScript",
                "jQuery",
                "PHP",
                "React",
                "Node.js"
            ];
            $("#inputID").autocomplete({
                source: subjects,
                change: function( event, ui ) {
                    alert("Change Event Triggered");
                }
            });
        });
    </script>
</head>
  
<body>
    <center>
        <div class="ui-widget">
            <h1 style="color:green;">
                w3wiki
            </h1>
            <h3>jQuery UI Autocomplete change Event</h3>
  
            <label for="inputID">
                Select Subject:
            </label>
  
            <input id="inputID">
        </div>
    </center>
</body>
</html>


Output:

Reference: https://api.jqueryui.com/autocomplete/#event-change



Contact Us