How can I track which links I go to in chrome?

Posted on

Problem :

I am clicking a button on a site and I want to see what link it’s actually executing. However the button is simply something like this…

<input type="image" name="btnNav1" id="btnNav1" title="view older" src="img/site/prev-ribbon.jpg" alt="view older">

so there is now “href” tag. Is the a chrome extension or a method to record the event once I click the button and see what the “link” being executed is? Or is this some time of server side activity that cannot be monitored?

Thanks!

Solution :

Short answer: You cannot easily do it.

The link is being generated via JavaScript or other scripting language most likely, and as such you won’t get much to tell you where is goes. Trying to think of a way to track this in all circumstances is basically giving me a headache – you can get the individual links from the JS, but that is a lot of extra work, and probably not worth it unless you have a real need to know this info.

HTH, I know it isn’t the answer you wanted.

Leave a Reply

Your email address will not be published. Required fields are marked *