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

  • SEARCH
  • Home
  • 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 3938292
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T00:10:04+00:00 2026-05-20T00:10:04+00:00

I am implementing jQuery UI Autocomplete and am wondering if there is any way

  • 0

I am implementing jQuery UI Autocomplete and am wondering if there is any way to only allow a selection from the suggested results that are returned as opposed to allowing any value to be input into the text box.

I am using this for a tagging system much like the one used on this site, so I only want to allow users to select tags from a pre-populated list returned to the autocomplete plugin.

  • 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-05-20T00:10:05+00:00Added an answer on May 20, 2026 at 12:10 am

    I got the same problem with selected not being defined. Got a work-around for it and added the toLowerCase function, just to be safe.

    $('#' + specificInput).autocomplete({ 
      create: function () {
        $(this).data('ui-autocomplete')._renderItem = function (ul, item) {
          $(ul).addClass('for_' + specificInput); //usefull for multiple autocomplete fields
          return $('<li data-id = "' + item.id + '">' + item.value + '</li>').appendTo(ul); 
        };
      }, 
      change:
        function( event, ui ){
          var selfInput = $(this); //stores the input field
          if ( !ui.item ) { 
            var writtenItem = new RegExp("^" + $.ui.autocomplete.escapeRegex($(this).val().toLowerCase()) + "$", "i"), valid = false;
    
            $('ul.for_' + specificInput).children("li").each(function() {
              if($(this).text().toLowerCase().match(writtenItem)) {
                this.selected = valid = true;
                selfInput.val($(this).text()); // shows the item's name from the autocomplete
                selfInput.next('span').text('(Existing)');
                selfInput.data('id', $(this).data('id'));
                return false;
              }
            });
    
            if (!valid) { 
              selfInput.next('span').text('(New)');
              selfInput.data('id', -1); 
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to choose a jQuery data grid plugin that plays well with MVC2.
I am making use of jQuery's .autocomplete plugin, and I would appreciate some assistance
Bear with me. I recently started implementing jquery at work. I created a new
I'm implementing this JQuery Lightbox plugin inside a DataList: http://leandrovieira.com/projects/jquery/lightbox/ I tested this code
I'm implementing a jquery mobile site and I've hit a snag when trying to
In implementing Easy Slider 1.7 with jQuery on a page of mine, I find
I am implementing the full calender in jquery in my asp.net mvc application by
How use partial decorator in Jquery Element I use this code for Form Element:
Sorry, but apparently I don't understand chaining enough to figure out this problem... I'm

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.