OnBlur event handler
I am calling two functions onBlur event. But the condition is the second function will be called only if first function is true, else it will not execute the second function.
onBlur="isInteger(this.value); age_msg();"
Here I want age_msg() function to be executed only if isInteger(this.value) is true and if this is false, age_msg() should not get executed.
Please help.
Regards,
Sasmita