选项卡内置Colorbox内容,标签不起作用

时间:2013-05-15 12:33:27

标签: jquery tabs colorbox

我正在尝试在colorbox模式窗口中显示选项卡式内容。但标签导航根本不起作用......

我认为问题是 rel 的事情,但我是jquery的新手

以下是实际页面SignUp modal widnow problem

的工作链接

屏幕截图在这里 colorbox modal window with tabs screenshot

Pastebin code link

您能否指导我需要对我的jquery脚本进行哪些更改才能使其正常工作

$(document).ready(function() {

        $(".tab_content_form").hide();
        $(".tab_content_form:first").show();

        $("ul.tabs_form li").click(function() {
                console.log('clicked !');
                $("ul.tabs_form li").removeClass("active");
                $(this).addClass("active");
                $(".tab_content_form").hide();
                var activeTab = $(this).attr("rel");
                $("#"+activeTab).fadeIn();
        });
});

0 个答案:

没有答案