How to convert addEventListener function in JQuery?
Hello,
I am new in JQuery.
I want to convert following javascript code in JQuery.
document.addEventListener("DOMSubtreeModified", throttle( function() {
//code
}, 50 ), false );
I have tried it using bind method but it is not working.
Please help me.