How can I do a blur and focus method in jQuery “on” method, focus is working perfect, blur isn’t how can I do this?
I have tried:
$(document).on('focus', '.activityLikeButton', function(){
// works
});
$(document).on('blur', '.activityLikeButton', function(){
// does not work
});
as the comments say, the focus is working perfect, the blur isn’t.
Thanks for your time.
I tried with alerts and it didn’t work. However, when I set a value for the textbox, on which I am using the focus and blur, it worked for me too.