How to handle multiple JS events to call same function.. please look at the code..
My requirement is to check uniqueness of Client Code entered in a textbox.. So I'm using something like this:
My code:
<input type="text"
onblur="function1(arg1,arg2)"
onclick="function1(arg1,arg2)"
onfocus="function1(arg1,arg2)">
So, is there any other better way to rewrite this code?