Skip to main content
deleted 1 characters in body
Source Link
djdd87
  • 68.6k
  • 29
  • 159
  • 198

You need to add a results handler:

$("#txtCity").autocomplete("<Your existing stuff here>").resultsresult(
         function(event, item, formatted)
         {
            // Use the item property
         }
      );

You need to add a results handler:

$("#txtCity").autocomplete("<Your existing stuff here>").results(
         function(event, item, formatted)
         {
            // Use the item property
         }
      );

You need to add a results handler:

$("#txtCity").autocomplete("<Your existing stuff here>").result(
         function(event, item, formatted)
         {
            // Use the item property
         }
      );
added 41 characters in body; added 2 characters in body
Source Link
djdd87
  • 68.6k
  • 29
  • 159
  • 198

You need to add a results handler:

$("#txtCity").autocomplete("<Your existing stuff here>").results(
         function(event, item, formatted)
         {
            // Use the item property
         }
      );

You need to add a results handler:

$("#txtCity").results(
         function(event, item, formatted)
         {
            // Use the item property
         }
      );

You need to add a results handler:

$("#txtCity").autocomplete("<Your existing stuff here>").results(
         function(event, item, formatted)
         {
            // Use the item property
         }
      );
Source Link
djdd87
  • 68.6k
  • 29
  • 159
  • 198

You need to add a results handler:

$("#txtCity").results(
         function(event, item, formatted)
         {
            // Use the item property
         }
      );