I have the following fancybox code:
$(\'.fancybox\').fancybox({ \'autoScale\' : false, \'href\' : $(\'.fancybox\').attr(\'id\'),
Have you tried this?
$('.fancybox').each(function(){ $(this).fancybox({ 'autoScale' : false, 'href' : this.id, 'type':'iframe', 'padding' : 0, 'closeClick' : false, //some other callbacks etc }); });