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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T20:00:57+00:00 2026-06-09T20:00:57+00:00

I have list of input fields. In which some are readonly fields. I am

  • 0

I have list of input fields. In which some are readonly fields.
I am using .keyup() event to trigger when something changes in input field.
But it won’t effect for readonly field.
Somehow i want to change those fields also .
Any help?

  • 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-09T20:01:00+00:00Added an answer on June 9, 2026 at 8:01 pm

    If you call focus on a readonly input field, then keyup events will fire. However, typing in that field won’t change its value (afterall, it’s read-only). Perhaps what you need is to listen for changes in its value attribute instead?

    I’d suggest listening to input and propertyChange as this answer suggested:

    $('input').bind('input propertychange', function() {
        // Do something
    });
    

    This way when your input value changes (from any means) you’ll be notified. Edit: does not work if you programatically change the value – for this case, the only cross-browser viable alternative involves polling (for instance this). A better option could be using a framework such as knockout.js, that automates this for you while providing clear separation between view and model. Here’s an example.


    Update: I recall reading your comment in a deleted answer, stating that you’re programatically setting the value of the input, is that correct? (could some user with 10k rep please restore it?) In that case, why not have the code that is changing the value trigger the listener directly?

    $(link).click(function() {
        $(readonlyInput)
            .val("some val") // Update the value
            .trigger('keyup'); // Trigger the listener
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a basic unordered list with an input field/form below it. I would
I have an input field that uses Autocomplete to show a list of possible
I have a Scheme assignment in which a user is to input a list
I have in input, which could be a single primitive or a list or
I have a ASP.NET MVC project with a large list of input textboxes which
I have a form containing a list of input fields that the user populates
I've got an input field, which's using the jQuery autocomplete method. The user starts
I have list of input area in the form with id like contact1_title, contact2_title,
I have a list of input type radio buttons in formview (edit mode) and
I have a list of file input boxes and I want to know if

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.