Hi
I need the output as Integer value.
My textBox1 value is 3 and the output i am receiving is 33 instead of 6.
Please advise what is wrong with the below code.
Thanks
var temp=document.g etElementById(' textBox1');
alert("Int value is "+parseInt(temp .value) +3);
I need the output as Integer value.
My textBox1 value is 3 and the output i am receiving is 33 instead of 6.
Please advise what is wrong with the below code.
Thanks
var temp=document.g etElementById(' textBox1');
alert("Int value is "+parseInt(temp .value) +3);
Comment