Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8955725
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T14:37:00+00:00 2026-06-15T14:37:00+00:00

I am using jQuery v1.8.3 and jQuery UI v1.9.2. I have implemented the Autocomplete

  • 0

I am using jQuery v1.8.3 and jQuery UI v1.9.2. I have implemented the Autocomplete widget this way:

$('#input_id').autocomplete({
  create: function (event, ui) {
    // Initialize data
    $(this).data( 'custom', { property1: 'Hello', property2: { num: 1, funct: function() { ... return value } } );

    alert($(this).data('custom').property1) // Display 'Hello'
  },

  select: function(event, ui) {
    alert($(this).data('custom').property1) // Display 'Hello'
  },

  source: function(request, response) {
    alert($(this).data('custom').property1) // Display 'undefined'
    alert(this.data('custom').property1)    // I get 'TypeError: this.data is not a function'
  }
});

Why in the source option I get undefined while in create and select events I get Hello? How should I properly access the number property in the search option context so to get Hello?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T14:37:01+00:00Added an answer on June 15, 2026 at 2:37 pm

    You’re getting undefined there, because apparently this inside source function refers to anonymous function, not to the INPUT you’re assigning data to in create function.

    Use other means to access input inside source function.

    $('#input_id').autocomplete({
        create: function (event, ui) {
            // when using "this" here, you're refering to #input_id input
        },
        source: function(request, response) {
            // when using "this" here, you're refering to anonymous function
        }
    });
    

    To access your data within source function use following:

     // ...
     source: function(request, response) {
         // you don't need to wrap this.element in jQuery again since it is already wrapped
         this.element.data('custom').property1
     }
    

    Demo for future quick reference: http://jsbin.com/ojesig/1/edit

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have implemented the autocomplete using JQuery, when I select the data, it gets
I have implemented autocomplete using Jquery. I have also implemented highlighting the matching text.
I have implemented an autocomplete using jquery-ui. I want to limit the number of
I am using jQuery UI v1.9. I successfully implemented the jQuery UI Autocomplete widget
I have implemented an auto complete event using Jquery , and it works fine,
I have implemented an application using jQuery on PhoneGap. In that I'm using a
I have implemented the image upload code using jquery php in my php web
i am using jquery version 4.x and i have implemented column chooser on my
I have created tabs by using jQuery API and have bound one event handler
Im trying to implement an asp.net textbox using the jQuery UI Autocomplete widget http://jqueryui.com/demos/autocomplete/#remote

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.