How do I track JavaScript that is modifying the inline style of a div in the DOM?

I've been messing around with a WordPress plugin. When I scroll down about 50px from the top, something changes the inline style attribute of the div tag. How can I track what this change is doing? Is there a Chrome feature or developer tool that can point to it?

+3


source to share


1 answer


Try the Chrome Dev Tools Timeline feature . It prints out all functions triggered by events, event type and when they were fired.



+4


source







All Articles