Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript fade in fade out issue Re: fade in fade out issue

#91431
dynamyc
Member

I’m trying something like this but it’s not working :

jQuery(document).ready(function()
{


jQuery('.jTscroller a').find('img').mouseenter(
function() {

var tag = jQuery('#tt');

tag.html(jQuery(this).find('img').data('title'));

jQuery(this).prepend(tag);

jQuery('#tt').fadeIn('slow');
});

link.bind('mouseleave', function(){
jQuery('#tt').fadeOut('slow');


}
);

missing } after function body is showing when I’m looking in firebug console