I have a div
with two function attached, one is click and other one is hover function. In javascript is there any way to find which events attached with that element. If we attach function to some element then where it store in dom. can we find it by using developer tool
Edit: How the browser / DOM knows that which event is register with which element
<div id="test">test</div>
script
document.getElementById('test').addEventListener('click',function(){},false)
document.getElementById('test').addEventListener('hover',function(){},false)