this is the my java script function
Code:
function operation(){
var frm = document.getElementById("frm");
frm.action="second.jsp?n1="+<%=newname%>;
}
some jsp code
<form name="frm" method="post">
<%=String newname=name[i]%>
.
.
.
</form>
Comment