Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any way to find out what javascript is affecting what element?

I've got some elements in the DOM that are being made visible by some javascript, but I can't find what javascript is affecting those elements? Like you can use firebug/chrome to find out what css is affecting the elements.

Is this even possible?

like image 953
Piers Karsenbarg Avatar asked May 27 '11 08:05

Piers Karsenbarg


1 Answers

There's no way to find out which js code made changes on an element in the past.

To find out events connected to DOM elements you can use http://www.sprymedia.co.uk/article/Visual+Event

like image 93
Federico Avatar answered Oct 05 '22 08:10

Federico