Hello...
I have small problem..
I dont know how to add value of two variables.
and that function:
When value of input poleForma1 is 3, than function calculateValue return 31, but not 4...
What do I do bad...?
Please help me...
I have small problem..
I dont know how to add value of two variables.
Code:
<INPUT type=hidden value=3 name=poleForma1 id=poleForma1>
<INPUT type=button value=GO onClick="JavaScript: calculateValue(document.getElementById('poleForma1').value )">
and that function:
Code:
function calculateValue(valueee) {
document.getElementById('poleForma1').value = eval(valueee+1);
}
When value of input poleForma1 is 3, than function calculateValue return 31, but not 4...
What do I do bad...?
Please help me...