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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:43:27+00:00 2026-05-27T02:43:27+00:00

I have a jQuery textarea with the jQuery ui autocomplete plugin applied. I’m noticing

  • 0

I have a jQuery textarea with the jQuery ui autocomplete plugin applied. I’m noticing that even when the autocomplete suggestions aren’t displayed, moving up and down with arrows doesn’t work. Only right and left.

Any ideas why and how to resolve? Is this an option? I understand up and down being disabled when the autocomplete options are open, but if they are not open why disable?

Thanks

  • 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-27T02:43:28+00:00Added an answer on May 27, 2026 at 2:43 am

    The Autocomplete implementation binds the ‘keydown’ event on the element itself the plugin is applied to, and it prevents default behavior.

    I guess the plugin was intended to be used on text fields and not textarea in the first place.

    this.element
        ...
        .bind( "keydown.autocomplete", function( event ) {
            if ( self.options.disabled || self.element.propAttr( "readOnly" ) ) {
                return;
            }
    
            suppressKeyPress = false;
            var keyCode = $.ui.keyCode;
            switch( event.keyCode ) {
                ...
                case keyCode.UP:
                    self._move( "previous", event );
                    // prevent moving cursor to beginning of text field in some browsers
                    event.preventDefault();
                    break;
                case keyCode.DOWN:
                    self._move( "next", event );
                    // prevent moving cursor to end of text field in some browsers
                    event.preventDefault();
                    break;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using this plugin: http://jquery.bassistance.de/autocomplete/demo/ I have an autocomplete textarea where the values
I have a jQuery plugin that finds the caret position of a textarea. I
does jquery have any plugin that prevents entering any input to a textbox that
I have a textarea element inside of a jquery modal dialog that has an
I have this jquery post that takes text from a textarea and inputs it
I have a jQuery function with even.preventDefault() applied to a click on any element
I have jQuery to select all font elements that are children of the element
I have the follwing jQuery: $(#textArea).keyup(function(){ var textAreaValue = $(textArea); if(!textArea.value.indexOf(some string)){ textArea.value =
I have a simple check .val() == with jQuery if textarea is empty or
I have some jquery that inputs text into a database and then clears the

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.