It appears you have not yet registered with DEVPPL. To register please click here... (it's fast, easy and free!)

Forum

Log In Sponsors
Board index Programming JavaScript Forum

add and remove textbox on button click

add and remove textbox on button click

Postby user_123 on Mon Jun 30, 2008 12:52 pm

Hi all,
I want to add or remove textbox on button click and i am succeded in doing that....but the only problem is whenever i click on add or remove button the textbox get added/removed on new page instead on the same page....so how can i do that thing so that on bttn click it gets added on same page..here is my code............


<html>
<head>
<script language="javascript" type="text/javascript">

function incrementCount()
{
document.frm.txt.value=parseInt(document.frm.txt.value) + 1;
addtxtBox();
}

function decCount()
{
document.frm.txt.value=parseInt(document.frm.txt.value) - 1;
addtxtBox();
}


function addtxtBox()
{
//var count=10;
var b="";
var a=document.frm.txt.value;

for(var i=1;i<=a;i++)
{
document.write('<table width="40%">');
document.write('<tr><td>Name :</td>');
document.write('<td><input type="text" name="txt"></td></tr>');
document.write('</table>');


}

</script>

<body>

<table width="40%" border="1">
<form name="frm">
<tr>
<td>Name:</td>
<td><input type="text" name="txt" value="0" readonly ></td>
<!-- <td><textarea name="msg" id="message" rows="5" cols="40"></td>-->
<td><INPUT type="button" value="ADD" name="add" onClick="incrementCount()"></td>
<td><INPUT type="button" value="Remove" name="remove" onClick="decCount()"></td>
<!--<td><INPUT type="button" value="ADD" name="add" onClick="document.frm.txt.value=parseInt(document.frm.txt.value) + 1"></td>-->
<!-- <td><INPUT type="button" value="ADD" name="add" onClick="addtxtBox()"></td>-->
</tr>



</table>

</form>
</body>
</html>
user_123
 
Posts: 0
Joined: Mon Jun 30, 2008 12:47 pm

Who is online

Users browsing this forum: No registered users and 6 guests