i have a function which i want to call on focus of the input box. I could do that using the following
document.form.inputboxName.onFocus=functionname;
The problem is when i want to pass parameters in the function. Is there a way to pass parameters to the function
functionname as shown above.
document.form.inputboxName.onFocus=functionname;
The problem is when i want to pass parameters in the function. Is there a way to pass parameters to the function
functionname as shown above.