View Single Post
Old 12-20-2012, 08:25 AM   PM User | #3
vwphillips
Senior Coder

 
Join Date: Mar 2005
Location: Portsmouth UK
Posts: 4,354
Thanks: 3
Thanked 458 Times in 445 Posts
vwphillips is a jewel in the roughvwphillips is a jewel in the roughvwphillips is a jewel in the rough
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
  <title></title>
</head>

<body>
<script type="text/javascript">
function addInput(){
 var tbl = document.getElementById('tblAddress');
 var lastRow = tbl.rows.length;
 var row = tbl.insertRow(lastRow);

 var cell0 = row.insertCell(0);
 var el = document.createElement('input');
 el.type='text';
 el.name='name[]';
 cell0.appendChild(el);

 var cell1 = row.insertCell(1);
 el = document.createElement('input');
 el.type ='text';
 el.name='address[]';
 cell1.appendChild(el);
 el = document.createElement('input');
 el.type ='button';
 el.value='X';
 el.onmouseup=function(){ Remove(this); }
 cell1.appendChild(el);
}

function Remove(obj){
 while (obj.parentNode){
  if (obj.nodeName.toUpperCase()=='TR'){
   break;
  }
  obj=obj.parentNode;
 }
 obj.parentNode.removeChild(obj);
 return;
}

</script>


<table align="center" border="1" id="tblAddress">
<tr>
<td><b>Name</b></td>
<td><b>Address</b></td>
</tr>

<tr>
<td><input type="text" name="name[]"></td>
<td><input type="text" name="address[]"></td>
</tr>
</table>
<p align="center"><input type="button" value="Add" onClick="addInput();"></p>
</body>

</html>
__________________
Vic

God Loves You and will never love you less.

http://www.vicsjavascripts.org.uk/

If my post has been useful please donate to http://www.operationsmile.org.uk/
vwphillips is offline   Reply With Quote