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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T19:38:46+00:00 2026-05-17T19:38:46+00:00

I have the following code iam trying to make the text div under the

  • 0

I have the following code iam trying to make the text div under the image editable by using keyup and using .val() but iam having a problem when i click on another image and edit the textbox to update the new image text they all change.

$('.HeaderGifs').live('click', function() {
 var img_class = $(this).attr("class"); 
 var img_src = this.src;
  $('#img_prop').css("display","block");
  $('#pre_img').html("<img src='"+img_src+"'></img>");
  var image_sel_id = img_class.replace("HeaderGifs ", "")
 alert(image_sel_id);

    $('#alt_text').keyup(function() { 

    var alt_text = $(this).val(); 

    $('#text_'+image_sel_id).text(alt_text);

        });
}); 

Thank You

  • 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-17T19:38:47+00:00Added an answer on May 17, 2026 at 7:38 pm

    The problem is with every click you’re binding a new keyup handler to #alt_text, so just .unbind() the previous handler, like this:

    $('#alt_text').unbind('keyup').keyup(function() {
      $('#text_'+image_sel_id).text($(this).val());
    });
    

    Or, a bit more efficient, just make image_sel_id a variable that changes and bind the #alt_text handler once…and it’ll always point to the current image:

    var image_sel_id;
    $('.HeaderGifs').live('click', function() {
      $('#img_prop').css("display","block");
      $('#pre_img').html("<img src='"+this.src+"'></img>");
      image_sel_id = this.className.replace("HeaderGifs ", "")
    }); 
    $('#alt_text').keyup(function() {
      if(!image_sel_id) return; //one hasn't been clicked yet 
      $('#text_'+image_sel_id).text($(this).val());
    });
    

    Note the check in the #alt_text handler, this is optional since #text_ probably won’t find anything, but might as well save some cost and not run the rest of the function at all since an image hasn’t been clicked yet.

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

Sidebar

Related Questions

I am trying to make a plugging using JS. I have the following code
I am trying to make some text scroll vertically using jQuery, I have been
I have the following code that I am trying to extract the systems proxy
I have the following code that i am trying to change from a regular
I am trying my hands on WPF MVVM. I have written following code in
In a CUDA kernel, I have code similar to the following. I am trying
I have the following code but I am unsure how I would adjust it
I am using ASP.NET 3.5 with iTextSharp and I have the following code: var
I have the following code. I am trying to prevent my page from resubmitting
I have the following problem: I am trying to make 3 links/anchors (with padding

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.