vote up 0 vote down star

By default I have 5 textboxes. When a user clicks on a button, one textbox should be added.

How could I do this?

flag

43% accept rate

5 Answers

vote up 0 vote down

Best would be to attach an event on to the onclick of the button, that will set a div's visibility to inline. This is about the best way I can see for this, considering flexibility and robustness.

Have a look here for example code.

link|flag
vote up 0 vote down
<script>
function add()
{
    document.getElementById("place").innerHTML="<input type='text' value=''>"
}
</script>
<input type="button" value="clickMe" onClick="add();">
<div id="place"></div>
link|flag
Whomever voted for this, isn't aware of the impact of using innerHTML. – OMG Ponies Sep 7 at 17:44
vote up -1 vote down

try this

<html>
<head>
<title>Dynamic Form</title>
<script language="javascript" type="text/javascript" >
function changeIt()
{

createTextbox.innerHTML = createTextbox.innerHTML +"<br><input type='text' name='mytext' >"

}
</script>
</head>
<body>

<form name="form">
<input type="button" value="clickHere" onClick="changeIt()">
<div id="createTextbox"></div>
</form> 
</body>
</html>
link|flag
1  
Whomever voted for this, isn't aware of the impact of using innerHTML. – OMG Ponies Sep 7 at 17:45
-1. Mucking about with innerHTML when a simple appendChild() would work is unnecessarily slow, and what is going on with your i variable? It doesn't even get used because the variable isn't expanded in the innerHTML string, so your HTML becomes name='mytext' followed by garbage that the browser can't understand. – Daniel Pryden Sep 7 at 17:47
Writing to innerHTML once is fair enough; += on innerHTML is always a mistake. – bobince Sep 7 at 20:52
vote up 5 vote down

If you replace the innerHTML, the previously entered values will be cleared, to avoid that, you can append the input elements programmatically:

var input = document.createElement('input'); 
input.type = "text"; 
//...    
container.appendChild(input);

Check this example.

link|flag
1  
Correct answer - because innerHTML will replace the contents of the specified HTML element with the newly defined innerHTML value. – OMG Ponies Sep 7 at 17:43
vote up 1 vote down
<script>
function add()
{
    var inpt = document.getElementById('input_template');
    inpt.parentNode.appendChild(inpt.cloneNode(false));
}
</script>

<input type="button" onclick="add();">

set id=input_template to one of the predefined textboxes

link|flag
1  
I would have made it a separate function instead of inline, and I would have used CSS to keep the styles the same, but this does seem like a clever way to do it, and it does seem it would work. – Daniel Pryden Sep 7 at 17:52
FYI: Better formatting would help everyone. – OMG Ponies Sep 7 at 17:53

Your Answer

Get an OpenID
or

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