I use an tooltip. When I hide the native browser function for the tooltip function, (remote Attr title), after an Ajax update there is no content at all! How can I fix this?
jQuery('.tooltip').each(function(){
$(this).data('title',$(this).attr('title'));
$(this).removeAttr('title');
jQuery(this).hover(function()
{
tooltip.show($(this).data('title'));
},
function()
{
tooltip.hide();
});
});
This is what I use when I load the page (also when I use the Ajax Request).
EDIT: IT ONLY WON'T WORK INSIDE FANCYBOX POPUP!