Hello Everyone,
I am using Ruby on Rails and Jquery as my library and 2 plugins but this should be a fairly plugin independent question.
I am using the jquery.pageLess plugin which makes an ajax call to the pagination that is built in to rails in order to load new items onto the page when you scroll to the bottom (much like the new google images layout).
However, I am also using the tipsy plugin to add tooltips to an image part of the link that is being loaded.
These tooltips work fine on the items which were not pageLessly loaded (which were already upon the originally loaded page) but do not show up on the items that were pageLess loaded. My guess is that pageLess makes a live, real time request to update the page but the tipsy tooltip plugin does not and therefore is not loaded on any of the new links that are returned by pageLess.
How can I make my jQuery functions work within the context of a live load/ajaxed content?