I have 3 textboxes
names
myTextBox1
myTextBox2
myTextBox3
onblur i want to check if the value of the checkbox is true.
I have a function in my js file.
function isNumeric(myString) {.......}
In my JSP file i write;
onblur="isNumeric(X)"
I wrote everything and it does not work. What must i have write instead of X.? The id of the checkbox? The name?
I also use onchange for my textboxes...