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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T07:10:25+00:00 2026-06-04T07:10:25+00:00

The user has an option create up to 100 list items. My goal is

  • 0

The user has an option create up to 100 list items. My goal is to create a menu under each item that will edit that individual item. Here is the code up to the edit button:

$(document).ready(function(){

var nextItemId = 1;

$('#AddItem').click(function(){

        //Create and add a paragraph

$('<p />').attr('id', 'itemParagraph' + nextItemId)

.text(nextItemId + ". ")

.appendTo('#listInput');


    //Create and add an input box

$('<input />').attr({'type':'text', 'id':'item' + nextItemId})

.appendTo('#itemParagraph' + nextItemId);

        //Create an edit button for input box

$('<input />').attr({'type':'button', 'value':'Edit', 'id':'editItem' + nextItemId})

.appendTo('#itemParagraph' + nextItemId);

    //d number

nextItemId++;

});

How can I create functions that will apply to all variables item1, item2, etc… item100 with its corresponding edit button editItem1, editItem2, etc…. editItem100? Is there a way to refer to these variables and condense it all nicely into a function when creating the menu for them? The menu will slide down when the edit button is pressed.

  • 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-04T07:10:26+00:00Added an answer on June 4, 2026 at 7:10 am

    Keep a reference to what you get back from $('<input />') and pass that to the callback. Example:

    var item = $('<input />');
    item.attr({'type':'text', 'id':'item' + nextItemId})
        .appendTo('#itemParagraph' + nextItemId);
    
    ... create menu ...
    menuItem.click(function() { item.focus(); })
    

    That works because the anonymous function keeps a pointer to the context in which it was created and thus, to the “value” of item at the time (= the reference to which it pointed).

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

Sidebar

Related Questions

I’m wanting to create a iPhone application where the user has the option to
If you'd write an application where some privileged user has the option to create
I am trying to create a site that has option to add maps to
the user has the option of dragging several pictureboxes around the form. when he
On Windows the user has an option to display/hide file extensions when viewing files.
A user has sent me some information that they posted to one of my
A user has a list of books, but only 1 book can be displayed
I'm creating a program where the user has the option of creating their own
I have a MySQL database in which each user has an account, and each
My program creates a log file when it starts. The user has the option

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.