I am using keyup event for autosearch from text field. But it triggers twice. If I bind method use it called once but in some pages it called twice.
$('#tc-header-sticky-search-input').on("keyup input", function(e){});
$(document).on('keyup ','#tc-header-sticky-search-input', function(e){});
I used both above . But no success