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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:39:28+00:00 2026-05-23T07:39:28+00:00

With jQuery 1.4.2 and many previous version it is possible to select inputs like

  • 0

With jQuery 1.4.2 and many previous version it is possible to select inputs like this:

$('input[value=test]')

But with 1.4.3 and higher this selector doesn’t work =(
Is there any way to select by value in newer versions of jQuery?

  • 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-23T07:39:29+00:00Added an answer on May 23, 2026 at 7:39 am

    So, the solution is to add this to js:

    $('input').bind('keyup change',function() {
        $(this).attr('value',this.value)
    });
    

    Demo – http://jsfiddle.net/VwVhD/28/

    UPDATE (21.02.2013)

    After years I came up with this actually:

    jQuery('input,textarea').live('keyup change', function(e) {
        var ignore_codes = [16,9,33,34,36,35,45,38,40,37,39];//arrows and others
        if (e.keyCode && jQuery.inArray(e.keyCode, ignore_codes) < 0)//ignore this keyUps to let this keys work as expected
        {
            var cp = getCP(this);
            jQuery(this).attr('value', this.value);
            setCP(this,cp);
        }
        });
        function setCP(ctrl, pos){
            if(ctrl.setSelectionRange) {
                ctrl.focus();
                ctrl.setSelectionRange(pos,pos);
            } else if (ctrl.createTextRange) {
                var range = ctrl.createTextRange();
                range.collapse(true);
                range.moveEnd('character', pos);
                range.moveStart('character', pos);
                range.select();
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I used jQuery many times ago, but always used like this: $(document) . Lately
Jquery has a great language construct that looks like this: $(document).ready(function() { $(a).click(function() {
I know there are many questions about jQuery slideToggle flickering but I haven't seen
I seen many jquery plugins that do this and I am wondering if anyone
there are many Jquery-Ajax-Upload scripts available but what is currently (for you) the best
I have tried many ways to select an option with jquery including .val(0) .attr('selected',
I have a jquery menu that has so many entries that it extends further
jQuery selectors are wonderful, but I sometimes I find myself typing them over and
Using jQuery , how can I dynamically set the size attribute of a select
There are many input radio elements on a web page and each radio element

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.