开发者

JQuery plugin combo woes: Fancybox and ContextMenu

开发者 https://www.devze.com 2023-01-04 15:22 出处:网络
I\'m using two popular plugins with success for the most part: http://www.trendskitchens.co.nz/jquery/contextmenu/

I'm using two popular plugins with success for the most part:

http://www.trendskitchens.co.nz/jquery/contextmenu/

http://fancybox.net/

They both work fantastically. However, I cannot seem to get context menus working inside a fancybox. The normal right click menu is suppressed, so I'm led to believe there is a z-index clash somewhere. After checking and updating styles though I still can't get a context menu inside a fancybox.

They both work gre开发者_开发知识库at separately however. Anyone combine these successfully or experience similar issues?

Thanks!


You will most likely (without your code I can only guess) need to call the contextmenu plugin inside of the fancybox onComplete callback

For example:

$.fancybox({
    //other initialization options
    // ...
    // ...
    'onComplete':function(){
        //call the context menu plugin here
    }
});


Adjusting your css files will do nothing probably as ContextMenu is adding 'zIndex: 500' and zIndex: 499' directly in it's js. Adjusting this to 99999 and 99998 worked perfectly.

Great plugins.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号