$('body').delegate("a[rel=fotobox]", 'click', function () {
$.fancybox({
'transitionIn':'none',
'transitionOut':'none',
'titlePosition':'over',
'titleFormat':function (title, currentArray, currentIndex, currentOpts) {
return '
<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length +
(title.length ? ' ' + title : '') + '
</span>';
}
});
return false;
});
http://api.jquery.com/delegate/jQuery 1.7+
$('body').on('click', "a[rel=fotobox]", function () {
$.fancybox({
'transitionIn':'none',
'transitionOut':'none',
'titlePosition':'over',
'titleFormat':function (title, currentArray, currentIndex, currentOpts) {
return '
<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length +
(title.length ? ' ' + title : '') + '
</span>';
}
});
return false;
});
http://api.jquery.com/on/