Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working on a Google Chrome extension that searches the website using jQuery, but am having a problem when a page uses 'infinite scrolling'. Any idea how I could trigger a method when the page is refreshed? Maybe by catching ajax responses?

share|improve this question

1 Answer

If you mean catch as in attempt to load the content that is otherwise invisible unless you scroll down, then you could trigger the content to load either by directly calling the function (if it is known and visible in your scope) or you can scroll down and back up once the page is loaded using scrollTop and setting it to the height of the document.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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