Help needed with fixing the tooltip issue under thumbnails.
Here is the setup for the tooltip:
$(document).ready(function(){
$("[rel=tooltip]").tooltip({
delay:{show: 300, hide: 150},
placement: 'bottom'
});
});
Now, let's look at the fbAlbum2 setup:
$(document).ready(function(){
$('#fbAlbumI').fbAlbum({
'albumID':'10150302289698306',
'rel':'tooltip',
'callback': function(){ // additional code here
$(".album a").magnificPopup({type: 'image' });
}
});
});
Check out this link for more information.
We apologize for any inconvenience caused by the messy css code.
EDIT: An issue arises when utilizing the tooltip function in the fbAlbum initialization. The title of the Facebook image does not show up in the popup window of magnific-popup. For reference, visit this link.
On the other hand, everything works fine without the tooltip feature! Visit this link to see it in action.