This question is locked. New answers and comments are not allowed.
Hi There,
I wanted to set OnLostFocus event for the numerictextbox ( in my case it's currency text box); I did that like
On lost focus above event gets fired but it gets fired three times.
Can you please tell me why so? and how to prevent it?
Thanks,
Jigar.
I wanted to set OnLostFocus event for the numerictextbox ( in my case it's currency text box); I did that like
var
$NumericTextBox = $(
'#Amount'
);
$NumericTextBox.find(
'> #Amount-input-text'
).live(
'blur'
,
function
() { alert(
'hello'
); })
On lost focus above event gets fired but it gets fired three times.
Can you please tell me why so? and how to prevent it?
Thanks,
Jigar.