Does click trigger when right mouse button was clicked? I want to implement a right click kind of menu with full calendar, but it only has dayClick event, which I think is trigg
Your answer is No, click doesn't trigger when right mouse button is clicked, but you can try mousedown event, check this out:
mousedown
jQuery(document.body).on("mousedown", function(event){ if(event.button==2){ //do what you want } });