RavanH,
I am trying to get the new titleFromAlt function working that was implemented in FancyBox v1.3.2. See JFK's post below:
I changed titleFromAlt in /easy-fancybox/fancybox/jquery.fancybox-1.3.3.js to true:
titleFromAlt : true,
I changed /easy-fancybox/fancybox/jquery.fancybox-1.3.3.pack.js to true:
titleFromAlt:true
I also changed /easy-fancybox/easy-fancybox.php
if( "over" == get_option("fancybox_titlePosition", $easy_fancybox_array['titlePosition']['default']) )
echo"
'onComplete' : function() {
$('#fancybox-wrap').hover(function() {
$('#fancybox-title').show();
}, function() {
$('#fancybox-title').hide();
});
},";
echo"
'autoDimensions': false,
'titleFromAlt' : true
});
";
Any idea why title from alt isn't working?! Thanks a ton!