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

  • Home
  • SEARCH
  • 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 6060475
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:49:48+00:00 2026-05-23T08:49:48+00:00

I have written a javascript to generate textbox dynamically. Code: function addtextbox(val) { var

  • 0

I have written a javascript to generate textbox dynamically.

Code:

function addtextbox(val)
{
 var foo = document.getElementById('fooBar');
 var num = (document.getElementById('cnt').value -1 + 2);
 ingrds[num]= val;
 var newdiv = document.createElement('div');
 var divIdName = 'divid'+num;       
 newdiv.setAttribute('id',divIdName);
newdiv.innerHTML = '<input type="text" size="15" id="' + ingrds[num] + '" value="' +   val + '"><a href="javascript:remove('+divIdName+')">Remove</a>';
foo.appendChild(newdiv);
}

//function to remove dynamically added textbox

function remove(dId)
{
 var foo = document.getElementById('fooBar');
 foo.removeChild(dId);
}

Whenever remove function is called i want to get the value of the textbox before removing it. How to go about it. Thanks in advance.

  • 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-23T08:49:49+00:00Added an answer on May 23, 2026 at 8:49 am
    function remove()
    {
    var foo = document.getElementById('fooBar');
    var value = foo.value;
    alert(value); // will show you the value for debugging purpose
    foo.removeChild(dId);
    }
    

    input elements can have their value access using the input.value property.
    The same goes for textarea element (textbox).

    EDIT

    "<a href="javascript:remove('+divIdName+')">Remove</a>"
    

    can be changed to

    "<a href="javascript:remove('+ingrds[num]+')">Remove</a>"
    

    no your function ca use the parameter

    function remove(id)
        {
        var foo = document.getElementById(id); // selects the input element
        var value = foo.value;
        foo.removeChild(dId);
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written some JavaScript code. It adds new function to NodeList type in
I have written code to save cookies in JavaScript. Now I need to clear
This is the piece of code I have written: <html> <head> <script type=text/javascript src=jquery-min.js></script>
i have written one javascript function to retrieve the position of a button and
I have this bit of javascript written with jQuery 1.2.5. It's contained inside the
I have to maintain a server-side script written in JScript (NOT Javascript) that needs
I have an asp.net web page written in C#. Using some javascript I popup
I have written some code in my VB.NET application to send an HTML e-mail
I'm learning javascript and jquery and have written a very basic script inside my
I have just written a Word Document creation web application using .NET 3.5 which

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.