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 7189713
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T19:21:37+00:00 2026-05-28T19:21:37+00:00

I am trying to micmic teh behaviour of a simple HTML SELECT element with

  • 0

I am trying to micmic teh behaviour of a simple HTML SELECT element with jQuery Ui Autocomplete.

Is it possible to set the active item (move focus) on the open event? Basically, I am trying to mimic the selected=”selected” option from a html select element – if the value in the field matches with one from the list, make that list item ‘selected’.

  • 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-28T19:21:37+00:00Added an answer on May 28, 2026 at 7:21 pm

    Well, I finally figured out the answer with the help of a friend.

    $('input[data-field=vat_rate]', view.el).autocomplete({
        source: function (request, response) {
            response(your_source_array);
        },
        minLength: 0,
        open: function (event, ui) {
            var term = ui.item.value;
            if (typeof term !== 'undefined') {
                $(this).data("autocomplete").menu.activate(new $.Event("mouseover"), $('li[data-id=' + term + ']'));
            }
        }
    }).click(function () {
        if ($(this).autocomplete('widget').is(':visible')) {
            $(this).autocomplete('close');
        } else {
            $(this).autocomplete('search');
        }
    }).data("autocomplete")._renderItem = function (ul, item) {
        var listItem = $("<li></li>")
            .data("item.autocomplete", item)
            .attr("data-id", item.id)
            .append('<a>' + item.label + '</a>')
            .appendTo(ul);
    };
    

    Here’s the JSBin for it: http://jsbin.com/unibod/2/edit#javascript

    Works perfect! 🙂

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

Sidebar

Related Questions

I am trying to build a menu with an active page element for CSS
What I am trying to do mimic an HTML Select tag. I want to
Trying to find some simple SQL Server PIVOT examples. Most of the examples that
Trying to make a make generic select control that I can dynamically add elements
I'm trying to mimic the behaviour of a table view similar to the iPod
I am trying to mimic the DataGridSelectionAdapter from the Sivlerlight toolkit samples (Autocomplete box)
I'm trying to mimic the behaviour of the HTC SMS application (tradional view), where
I'm trying to mimic the ghosting functionality from Scriptaculous with jQuery UI. I've found
Hi I'm trying to migrate my HTML/PHP/JS/XML page into one php file. I was
I'm trying to mimic the following Java code: int[][] multi; // DIMENSIONS ARE UNKNOWN

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.