You need to answer the question:

Originally Posted by
jscheuer1
How are you initializing ColorBox and what's the id of your display area for the tabs script?
If you don't understand what I'm asking for and you want more help:
Please post a link to a page on your site that contains the problematic code so we can check it out.
But, for example, working from their example1 index page, this was transformed:
Code:
$(document).ready(function(){
//Examples of how to assign the ColorBox event to elements
$("a[rel='example1']").colorbox();
});
into:
Code:
$("#contentarea a[rel='example1']").live('mousedown', function(e){
e.preventDefault();
var a = this;
$('#contentarea ' + a.tagName + '[rel="' + a.rel + '"]').colorbox();
});
Where contentarea is the name of the display area for Tab Content.
I could do the same for your initialization if I know what it is, and what the id of the Tab Content display area is.
Bookmarks