Hello everyone Im using clueTip http://plugins.learningjquery.com/cluetip/ a fancy tooltip js lib to show some adition info. That information is loaded via AJAX. clueTip is very easy, works well with web2py and loads asynchronously. I want to cache the requested information for efficiency but it seems to do cache only from statics pages.
Example: <h4 title="Fancy Title!" id={{ =URL( 'static' , 'info.html' ) }}>Hover over me</h4> $('h4').cluetip({attribute: 'id', hoverClass: 'highlight'}); but if the page isnt static, defined in a controller, clueTip doesn't cache the request at all. I dont know why thats happens, and I dont even know if is an issue from clueTip or Web2py. I can do it using some hacks (loading the info in a div and showing it on mouseover) but isnt very clean. Any thoughts?