I am currently working on a website where various scripts modify the DOM (both using click / hover events and page loading), changing the height / width of elements, etc., and I'm trying to figure out which scripts which elements affect. For example, it is height: 9pxadded to the element <span>below, and I need to know what the script is doing (currently using Chrome Dev Tools, although if another browser can perform this task better, I am open):
<span data-id="m_left_fitting_finish_filter" class="sidebar__filterBlock-title" style="height: 9px;">
Tried to select Break on> Attributes modificationsand reload the page, although it didn't seem to do anything - does it only work for class / id changes?
source
share