Add Input Fields Dynamically to Form Using JavaScript

Feb 8th, 2010

Here you will get working code for adding input fields dynamically using a link or button. Default number of input fields are provided and you want to give users a option to add more input elements then this script will work. Be it Input box field, Textarea or any other form elements,  it will work the same way.

I will mention two examples here. One will show adding any single element (Input box in my example) and another will show you how to add set of HTML elements. Combined both, modifying the code for specific usages should not be difficult job.

Example: Add Input Box Dynamically using JavaScript

JavaScript code:

<script type="text/javascript">
function validate(frm)
{
	var ele = frm.elements['feedurl[]'];

	if (! ele.length)
	{
		alert(ele.value);
	}

	for(var i=0; i<ele.length; i++)
	{
		alert(ele[i].value);
	}

	return true;
}

function add_feed()
{
	var div1 = document.createElement('div');

	// Get template data
	div1.innerHTML = document.getElementById('newlinktpl').innerHTML;

	// append to our form, so that template data
	//become part of form
	document.getElementById('newlink').appendChild(div1);

}
</script>

HTML Code:

<style>
   .feed {padding: 5px 0}
</style>

<form method="post" action="new_ele2.php" onsubmit="return validate(this)">

<table>
<tr>
	<td valign=top> Feed URL (s):</td>
	<td valign=top>
		<div id="newlink">
			<div class="feed">
			   <input type="text" name="feedurl[]" value="http://feeds.feedburner.com/satya-weblog/scripting" size="50">
			</div>
		</div>
	</td>
</tr>
</table>

	<p>
		<br>
		<input type="submit" name="submit1">
		<input type="reset" name="reset1">
	</p>

<p id="addnew">
	<a href="javascript:add_feed()">Add New </a>
</p>

</form>

<!-- Template. This whole data will be added directly to working form above -->
<div id="newlinktpl" style="display:none">
	<div class="feed">
	 <input type="text" name="feedurl[]" value=""  size="50">
	</div>
</div>

JavaScript function add_feed() is the function which will add Input element dynamically to the working form after clicking in Add new link. Comments inside the function will describe the working of the function. Javascript function validate() is just to show you how you handle the input elements client-side. Inside HTML code, form will show you what was the actual elements available to users and how users can add more input fields if she wants. Template is the hidden data ready to be added to the main form on demand. All the data inside the div id=newlinktpl will be added to the form.

Initial Form:

Dynamically add HTML elements to form on click

After Adding one more set of elements:

Screen-shot after user clicked the Add new link

Dynamically creating form elements (set of element) using JavaScript

Now, I will present another example where the script will add set of HTML elements to the default form. Method of adding the set of elements will be same - user will click on the "Add new" button for adding more data to the form. In the set of elements, one is usual Input Box and another is textarea.

<script>
/*
This script is identical to the above JavaScript function.
*/
function new_link()
{
	var div1 = document.createElement('div');

	div1.innerHTML = document.getElementById('newlinktpl').innerHTML;

	//var test1 = document.getElementById('newlinktpl').getElementsByTagName('table')[0];

	document.getElementById('newlink').appendChild(div1);

}

</script>

HTML for Dynamically creating form elements:

<form method="post" action="">

<div id="newlink">
<div>
<table border=0>
	<tr>
		<td> Link URL: </td>
		<td> <input type="text" name="linkurl[]" value="http://www.satya-weblog.com"> </td>
	</tr>
	<tr>
		<td> Link Description: </td>
		<td>  <textarea name="linkdesc[]" cols="50" rows="5" ></textarea> </td>
	</tr>
</table>
</div>

</div>
	<p>
		<br>
		<input type="submit" name="submit1">
		<input type="reset" name="reset1">
	</p>

<p id="addnew">
	<a href="javascript:new_link()">Add New </a>
</p>

</form>

<!-- Template -->
<div id="newlinktpl" style="display:none">
<div>
<table border=0>
	<tr>
		<td> Link URL: </td>
		<td> <input type="text" name="linkurl[]" value=""> </td>
	</tr>
	<tr>
		<td> Link Description: </td>
		<td> <textarea name="linkdesc[]" cols="50" rows="5" ></textarea> </td>
	</tr>
</table>
</div>
</div>

Screenshot after user has added data and clicked on "Add new" link:
Add Input Element Dynamically using JavaScript

If you link the script and example for dynamically creating text Input then help me sharing the word. Share on delicious or digg this. Subscribe to feed to stay up-to date.

Update: Few developers are feeling difficulty in using data submitted through the form this way, so I am adding these line of codes as a hint.

<?php

if(count($_POST))
{

	$len = count($_POST['linkurl']);

	for ($i=0; $i < $len; $i++)
	{
		echo $_POST['linkurl'][$i] . '<br>';
		echo $_POST['linkdesc'][$i] . '<br>';

	}
}

?>

For more on dynamically working with Form elements check here as well: Dynamically Populate Select List by Ajax or check in Related posts section below.
Update: My code is enough for Admin side or simple form but here is better code. It allows you do delete the extended form element.

 

 

Possibly Related posts:

  1. zapdude
    February 20th, 2010 at 23:30 | #1

    leading on from this, how do I now take the data from the dynamically created input fields and insert them into a mysql database?

  2. February 21st, 2010 at 05:43 | #2

    whats problem. It is added dynamically in form. If you submit the form then you will see all those elements submitted also.

  3. zapdude
    February 21st, 2010 at 16:08 | #3

    well for instance, I want to insert each newly created input field on the form as seperate records in a database table. So the table might be called “linktable” and may have a field named “anewlink”, with another primary key setup so that it auto increments.

    So i have changed the form action to point to a PHP script. In this PHP script, I have this line to get the form inputs:

    $feedurl=($_POST['feedurl[]']);

    now i have this line to insert it into the database:

    $sql=”INSERT INTO linktable (anewlink) VALUES ('$feedurl')”;
    $result1=mysql_query($sql);

    But when i check my table after submitting, it only shows that one blank record has been added, even though i have submitted multiple inputs from the form.

    Could you please give any advice on how to make this work. This would be most appreciated. Thanks

  4. February 22nd, 2010 at 07:12 | #4

    Check using $_post['feedurl']. It should give u array

  5. February 26th, 2010 at 21:18 | #5

    nice post. thanks.

  6. nichico
    March 9th, 2010 at 14:03 | #6

    can you make it work width a checkbox so when its checked the new imput fields is added?

  7. March 9th, 2010 at 20:06 | #7

    See, I am using add_feed() / new_link() function on “Add New” link. you call any one depending on the type you selected from above code and call that function. Below put that function and replace alert(‘a’).

    <input type=”checkbox” name=”check1″ value=”test1″ onclick=”if(this.checked) alert(‘a’);” >

  8. Ashwin Variyar
    March 11th, 2010 at 16:12 | #8

    I am not able to submit data from the form to a database. I am getting the word Array and not the data…… please help

  9. March 11th, 2010 at 19:49 | #9

    So, what is the problem. Try to use print_r() on your variable which is sending Array to DB.

  10. Ashwin Variyar
    March 14th, 2010 at 19:05 | #10

    Thanks a lot for the quick response……… I used print_r() and used echo with it the data was printed…….. but as soon as i inserted in the database the value it showed was “1″ whereas the data i intended to insert was “sad”………. the question that i have is how do i insert the data from the form into the database table ??

  11. March 14th, 2010 at 21:14 | #11

    I think you need to try yourself for some time. but I have added few more lines of code. Check for 1st Update at the bottom.
    or try to use any good forum for your doubt.

  1. No trackbacks yet.

All comments will be moderated.