hello please help me out regarding this dunction i want to pass value from the textbox to javascript function and over there i want to store it for other text box . here is the sample code '
<input type="button" value="Add" onClick="addRowToTable(<?php echo $data['pno'];?>);" />
here is the javascript function
function addRowToTable(var a)
{
........................
.......................
b.type = 'text';
b.value ='over here how can i get this value of a ';
}
Thanks