vote up -2 vote down star

i am using this code:

<html>
 <head>
   <title>Dynamic Form</title>
   <script type="text/javascript">
     var i = 6;
    function CreateTextbox(){
      createTextbox.innerHTML = createTextbox.innerHTML 
                   +'<input type=text name="flow'+i+'"/>'
       i++;
    }
  </script>
</head>
<body>
 <form name="form" action="post">
  <input type="button" name="what" value="clickHere" onClick="CreateTextbox()"/>
   <div id="createTextbox"></div>
 </form>
</body>

when i add a new textbox, the value that was entered in the previous textbox is deleted. how can i retain it?

flag

43% accept rate
We need more code – d03boy Sep 8 at 3:50
1  
Exact dupe: stackoverflow.com/questions/1391875/… – karim79 Sep 8 at 3:51
Is this thread is duplicate or a pasted link is duplicate? – adatapost Sep 8 at 3:54
Here's the dupe: stackoverflow.com/questions/1390553/… – seth Sep 8 at 3:56
Dude, are you even reading the answers to your previous questions? We've already told you not to use innerHTML for this several times. – bobince Sep 8 at 10:53

3 Answers

vote up 1 vote down

Adding HTML element by concatenating the innerHTML is very slow and that is causing the values to be cleared, since the container (the div createTextbox) and all the childs are re-created on each innerHTML assignment.

I suggest you to create the input elements programmatically with document.createElement and append the elements using to the container div using appendChild:

window.onload = function  () {

  var createTextbox = function () {
    var i = 6,
        container = document.getElementById('createTextbox');

    return function () {
      var div = document.createElement('div'),
          input = document.createElement('input');
      input.type= "text";
      input.name = "flow" + i;
      div.appendChild(input);
      container.appendChild(div);
      i++;
    }
  }();

  // event binding
  document.getElementById('addButton').onclick = createTextbox;
}

Check the above code working here.

link|flag
vote up 0 vote down
<html>
     <head>
       <title>Dynamic Form</title>
       <script type="text/javascript">
        function CreateTextbox(){
          createTextbox.innerHTML = createTextbox.innerHTML 
                       +'<input type=text name="flow"/>'
        }

        function getValues(){
          if(form1.flow!=null){
            if(form1.flow.length==null)
               alert(form1.flow.value);
            else{
            for(i=0;i<form1.flow.length;i++){
              alert(form1.flow[i].value);
             }
            }
           }
        }
      </script>
    </head>
    <body>
     <form name="form1" action="post">
      <input type="button" name="what" value="clickHere" onClick="CreateTextbox()"/>
       <div id="createTextbox"></div>
      <input type="button" name="GetValue" onclick="getValues()"/>
     </form>
    </body>
link|flag
vote up 0 vote down

You're probably forcing the browser to recreate the element when you redefine its innerHTML property, which subsequently causes you to lose its value in the process.

Can this be done with a

  var elem = document.createElement("input");
  someDOMElement.childNodes.add(elem);

combination?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.