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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T23:22:35+00:00 2026-05-25T23:22:35+00:00

I have two divs and a link for each. I’m trying to write an

  • 0

I have two divs and a link for each. I’m trying to write an onclick function that appends a new div inside one of the two divs. The new div will have two form inputs appended to them. The new div will have a timestamp unique id tag. I suck at javascript and can’t figure out what i’m doing wrong though.

Heres a link to a jsfiddle i’m trying to work on it with http://jsfiddle.net/XLuHU/6/

<a href='javascript:void;' onclick='return add_item("xyz", "Candy", "45.99", "#item_box1")'>Add Item to Box 1</a>

<br>

<a href='javascript:void;' onclick='return add_item("123", "Soda", "1.99", "#item_box2")'>Add Item to Box 2</a><br><br>

<div id='item_box1'></div><br><br>
<div id='item_box2'></div>



function add_item(code, title, price, divbox){

    var idtag = "div_" + event.timeStamp;

    if(divbox == "#item_box1")
    {
      var item_title = $("<input/>", {
          type: 'text',
          name: "box1_item_title[]",
          value: title,
           });

       var item_price = $("<input/>", {
          type: 'text',
          name: "box1_item_price[]",
          value: price,
           });
       var new_item = item_title + " - " + item_price; 
    }
    else
    {
       var item_code = $("<input/>", {
          type: 'text',
          name: "box2_item_code[]",
          value: code,
           });

       var item_title = $("<input/>", {
          type: 'text',
          name: "box2_item_title[]",
          value: title,
           });
       var new_item = item_code + " - " + item_title; 

    }

    $(divbox).append("<div id='"+idtag+"' ></div>");

    $("#"+idtag).append(new_item);

};
  • 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-25T23:22:36+00:00Added an answer on May 25, 2026 at 11:22 pm

    First off this line is incorrect, event is not defined in this context:

    var idtag = "div_" + event.timeStamp;
    

    This might work better:

    var idtag = "div_" + new Date().getTime();
    

    Also this line will produce the wrong expected outcome, since your adding two objects together:

    var new_item = item_title + " - " + item_price;
    

    Also you have trailing commas in your object, which should have caused JS error, but didn’t seem to in the latest version of Chrome and Firefox.

    Here is the working fiddle, which is aslightly modified version of the code below, due to the fact that ‘onclick=”return add_item…’ doesn’t seem to work in JSFiddle. It just give “add_item” is undefined.

    However, something like this should work in a normal HTML document:

    <!DOCTYPE html>
    <html>
        <head>
            <style type="text/css">
                #item_box1{
                    width: 300px;
                    margin: 0 auto;
                    height: 100px;
                    border: 1px solid blue
                }
    
                #item_box2{
                    width: 300px;
                    margin: 0 auto;
                    height: 100px;
                    border: 1px solid red
                }
                .link-button {
                    color: rgb(0, 0, 255);
                    cursor: pointer
                }
            </style>
            <script type="text/javascript" src="http://code.jquery.com/jquery-1.6.3.js"></script>
            <script type="text/javascript">
                function add_item( code, title, price, divbox )
                {
                    var idtag, item_title, item_price, item_code;
                    // Generate an id based on timestamp
                    idtag = "div_" + new Date().getTime();
                    // Generate a new div.
                    $( divbox ).append( "<div id=\"" + idtag + "\"></div>" );
    
                    if ( divbox == "#item_box1" )
                    {
                        item_title = $("<input/>", {
                            type: 'text',
                            name: "box1_item_title[]",
                            value: title
                        });
    
                        item_price = $("<input/>", {
                            type: 'text',
                            name: "box1_item_price[]",
                            value: price
                        });
                        // Show in the document.
                        $( "#" + idtag ).append( item_title, item_price );
                    }
                    else
                    {
                        item_code = $("<input/>", {
                            type: 'text',
                            name: "box2_item_code[]",
                            value: code
                        });
    
                        item_title = $("<input/>", {
                            type: 'text',
                            name: "box2_item_title[]",
                            value: title
                        });
                        // Show in the document.
                        $( "#" + idtag ).append( item_code, item_title );
                    }
                }
            </script>
        </head>
        <body>
            <a class="link-button" onclick="return add_item('xyz', 'Candy', '45.99', '#item_box1');">Add Item to Box 1</a>
            <br>
            <a class="link-button" onclick="return add_item('123', 'Soda', '1.99', '#item_box2');">Add Item to Box 2</a>
            <br>
            <br>
            <div id='item_box1'></div>
            <div id='item_box2'></div>
    
        </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have an div. Inside this div, I have two divs floating left,
I have a div with two nested divs inside, the (float:left) one is the
I have a container div that holds two internal divs; both should take 100%
Possible Duplicate: click link below a higher z-index div I have two divs, one
I have two DIVs, first one has a link in it that contains the
I have hidden Divs with .display-link classes that are two levels up from an
I have two divs and two separate links that triggers slideDown and slideUp for
I have two divs. I would like to move/populate the text from div id
As a web developer I frequently will have two floated (child) divs inside of
I have a page with the following two divs: <div id=searchResults> </div> <div class=postSearchOptions

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.