how to get textbox in java script having a ok button before it .whatever value i enter in the textbox the same no of txtbox display(ie. suppose we enter 6,the 6 txtbox display as i press ok) and each of the txtbox has a ok button before it ,when i click to the ok button the text comes out from the txtbox.
Here is a javascript example that accepts the number from the user in order to generates the entered number of textboxes.
<html>
<script>
function generate()
{
var no = document.getElementById("text").value;
var tbl = document.getElementById("div");
for(var i =1;i<=no;i++)
{
tbl.innerHTML = tbl.innerHTML +' <input type="button" value="ok" onclick="getData();">'+'<input type="text"><br>\n';
}
}
function getData(){
}
</script>
<body>
<pre>
<input type="button" value="OK" onclick="generate()"/><input type="text" id="text" />
</pre>
<div id="div">
</div>
</body>
</html>