So I’m using http://code.drewwilson.com/entry/tiptip-jquery-plugin for tool tips in my app.
When a page loads, it works great. If I load a new page through ajax, the tool tipz on the new page simply don’t show up.
Any ideas for what could be breaking something like this?
When you say this:
To bind the tooltips to some elements, that executes immediately and only pays attention to the elements that are currently on the page. If you load some new elements through an AJAX call, you’ll have to bind
tipTipto everything in the new HTML. Whatever AJAX calls you’re using should have a success callback, you can supply a callback that will re-do the.tipTip()call on the new HTML as you insert it into the page.