Hi,
I load some ajax content with the load jquery function and qTip is no more working for elements in the ajax content.
I dealt with the live jquery function for the other jquery event but I don't know how to proceed with qTip.
//Load part
$(".load_trigger").load("page.php");
// Tooltip part
$(".content_el").each(function(){
jQuery(".trigger_el", this).qtip({
content:...
});
});
Any idea ?
Thx!