i want to convert javascript variable to java variable i have following code:
Code:
<script>
   function increaseValue(strid,p,pr) {
	   var v = parseInt(strid.value);
	   v= isNaN(v) ? 0 : v;
	   v++;
	   strid.value = v;
	   var total=v*p;
	   pr.value=total;
	  
	 }
   function decreaseValue(strid,p,pr) {
	   var v = parseInt(strid.value);
	   v = isNaN(v)
...