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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:47:54+00:00 2026-05-16T16:47:54+00:00

Lets say that I have a element reference obtained ala… var x=document.getElementById(ID123); Now I

  • 0

Lets say that I have a element reference obtained ala…

var x=document.getElementById("ID123");

Now I want to include some function of x on a dynamically created html element ala…

myWin.document.write("<input  type='button'   data-doit=????? value='Do It'   onclick='window.doit(?????);'/>");

so that function doit() can recreate the original reference x

function doit()
{
var x = ?????;
}

Right now I’m doing this by obtaining a numeric index of x as found via getElementsByTagName and passing that as a parameter to doit().

Is there some way to do this?

  • 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-16T16:47:55+00:00Added an answer on May 16, 2026 at 4:47 pm

    I would probably pass the ID of x to doit(), which would require doit() to look something like this:

    function doit(id) {
        var x = document.getElementById(id);
        // etc
    }
    

    As far as creating the input element goes, there a couple of ways to do this. This is similar to your current solution (but non-standard):

    myWin.document.write('<input ... onclick="doit(' + x.id + ');" />');
    

    The standard solution is to create your new input element using the DOM API:

    var input = myWin.document.createElement('input');
    input.type = 'button';
    // other properties
    input.onclick = function () {
        doit(x.id);
    };
    // insert new element
    document.getElementById("myform").appendChild(input);
    

    (Note that inserting the element is a little more complicated in this situation – you have to programmatically find its location in the DOM).

    Finally, if you’re using jQuery, you might do something this:

    var input = $('<input type="button" etc />').click(function () {
        doit(x.id);
    });
    $('#myform').append(input);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Lets say that I have an executable and when it is started I want
I have a textarea element what i want to limit to, lets say, 100
Lets say I have an array like int arr[10][10]; Now i want to initialize
Lets say you have an xml document like <parents> <parent> <element /> <element />
Lets say that i have 2 pages: index.php and service.php index.php sends an http-post
Lets say that you have a following simple application: <form action=helloServlet method=post> Give name:<input
Lets say that i have a duration of time e.g., 10 minutes . I
Lets say that you have a business object whose current state implies that there
Lets say that I have only DHT (distributed hash table) implemented (in Python), and
Lets say that I have the following code: public class Shelter<A extends Animal, B

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.