简体   繁体   中英

jQuery Right-Click Context Menu Help!

http://pastebin.com/YyDzQ4Bk this is a plugin for right click context menu, anyone know why it doesn't work in IE?

Not only that, it's breaking many of my other jQuery things, such as fancy box and some jQuery hover functions.

Do you really need a plugin?

You could make your own context menu using contextmenu event:

$("element").bind("contextmenu",function(e) {
    e.preventDefault();

    // create and show menu
});

Some ways to achieve it

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM