jQuery(document).ready(
function($)
{
$("a.fancybox").fancybox({
'titleShow': true,
'titlePosition': 'inside',
'autoScale': true,
'autoDimensions': true,
'scrolling': 'auto',
'titleFormat': function(title, currentArray, currentIndex, currentOpts)
{
return '<a href="' + $(this).attr('href') + '" target="_blank">' + $(this).attr('href') + '</a>';
}
});
}
); |