Hey, I am attempting to invoke a callback function when the tag editor field receives the focus, but for some reason the below code is not working:
//try onclick
$(".tag-editor").on("click", function () {
//invoke_click_listener();
});
//try onfocus
$(".tag-editor").on("focus", function () {
//invoke_focus_listener();
});
How do I detect when the editor (or its container) gets a click or receives focus?
Hey, I am attempting to invoke a callback function when the tag editor field receives the focus, but for some reason the below code is not working:
How do I detect when the editor (or its container) gets a click or receives focus?