I'm using the manual colorbox call like so:
$('a[rel="example1"]').click(function(event){
event.preventDefault();
$.colorbox({
href: $(this).attr('href'),
maxWidth: '90%',
initialWidth: '200px',
initialHeight: '200px',
speed: 700,
overlayClose: false
});
});
I have to use it this way in order to not interfere with another plugin (it's the only way I could get it to work).
The problem is that while the modal pops up, it doesn't have the other images or anchors in the group, so there's no "next" or "previous" options.
Any ideas on how to fix this?