You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

conflict Created Mar 15, 2010

This thread is solved

Views: 1290     Replies: 2     Last reply Mar 21, 2010  
You must login first before you can use this feature

spirithero

Posts: 3

Registered:
Mar 15, 2010

conflict

Posted: Mar 15, 2010

i used this library in the standalone page and it's perfect.
but when i used it with some jquery plugins like colorbox,the library didn't work or plugins. i think the could have some conflict. And how to solve this.

sghiassy

Posts: 4

Registered:
Mar 11, 2010

» conflict

Posted: Mar 21, 2010

Reply to: conflict, from spirithero
I have the same problem. I don't know how to fix it but I did find out that the key piece of code causing the conflict is the colorbox's use of

rel=""

When I removed that tidbit of code colorbox doesn't work, but then the tabs work again.

sghiassy

Posts: 4

Registered:
Mar 11, 2010

» conflict

Posted: Mar 21, 2010

Reply to: conflict, from spirithero
Hey I figured it out...

My problem was that I was using jQuery Tools Overlay feature with the call:

$("a[rel]").overlay({ 

Thus any link on the page that used

rel="anything"

was being included into the overlay feature

so instead I changed it to

$("a[rel='#overlay']").overlay({

Now only links that use

rel="#overlay"

Will use the overlay feature and now jQuery Tools Overlay, Tabs & Colorbox all play nice