如何使用公共函数为colorbox添加功能?

时间:2013-02-11 10:34:11

标签: jquery-plugins colorbox

我想为colorbox制作公共功能,这将为colorbox添加一些功能

$("#selector").colorbox({
        inline: true,
        popover: true,
})

现在如何在newPublicMethod中访问此popover?

(function($){

    $.fn.colorbox.settings.popover = false;

    $.fn.colorbox.myPublicMethod = function(abc){
        // how can i read the popover value here 
        if(popover){
           //somecode
        }
    }
})(jQuery);

0 个答案:

没有答案