I'm trying to use contextmenu for the left menu button click but it's not working:
<input type="button" id="selector" value="click" />
jquery:
$('#selector').on('click',function(){
$(this).triggerHandler('contextmenu')
});
How should I implement?
Please check this is not working fiddle
Please note: I want to use default contextmenu on left click.