I am trying to late-bind context menus to elements, using the ContextMenu plugin. So on the first right-click on those elements, I would like to :
- intercept the right-click through a live event on a certain "uncontextmenued" class,
- determine if the
data('events').contextmenu
exists,
- if not, attach the context-menu (and change the class to avoid re-throwing this live process),
- re-throw the right-click event to show the right-click.
I'm having trouble with the last item. jQuery allows to .click()
or to .trigger('click')
, which simulate a left-click, but there seems not to be a way to fire a right-click event through trigger
.
Or is there?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…