is it possible to find the javascript that is setting an element attribute in chrome dev tools? or any other tool ?
Example:
Javascript set href in some external file
$('.buy_button').attr('href','asdf');
...then inside the main.html
<a href="asdf" class="buy_button">the link</a>
How do I find what is setting main.html in chrome dev tools or some other tool ?