I use content_scripts in chrome extension to catch the event of opening new site. But when i click on this site a link that redirects me to subsite the event is not fired.

It's not usual site that uses reload to handle link clicks. After clicking link i'm redirected to something like (AJAX?):

http://somesite.com/page#something

So i suppose it's dynamically loaded. How to handle all events of reloading of this page?

How to catch every event of loading page not only by entering into URL field but also by clicking links?

link|improve this question

Sorry, your question is not very clear. Can you maybe provide some code? – serg Aug 11 '11 at 22:04
Unf. no because it's not my website. And i don't know really what part of the whole website is important to this question. – tomaszs Aug 13 '11 at 9:06
1  
For future reference, you can also use the Chrome Developer Tools to setup a click listener on the element (in "Scripts" tab, on the right panel, scroll down to "Event Listener", expand the "Mouse" section and check the "click" event). This will make the debugger pause on click, and you can check what's actually going on. – Boris Smus Aug 17 '11 at 23:08
feedback

1 Answer

up vote 1 down vote accepted

tomaszs - you are going to have to hook the mousedown event. With JQuery it looks like this:

$('a').live('mousedown', function(){
alert($(this).attr('href'));
)};

You'll have to examine the value of the href for $(this) and then do whatever you need to do.

Sounds like the page you are working with has frames so you need "all_frames": true in your manifest under the content_scripts section.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.