I have one input and that input have two events bind with it like below
<input type="text" class="textinput"/>
<script>
$(".textinput").focusin(function(){
//some code
}
$(".textinput").focusout(function(){
//some code
}
</script>
is there any programmatic way to find number of events bind with .textinput" input ?
i tried searching on google but not helping much.