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?
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.
|
|
|
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. |
|||
|
|