Hello,
What is the way of understanding the clicked mouse button with jquery or with javascript?
$('div').bind('click', function(){
alert('clicked');
});
this fetches both right and left click, what is the way of being able to catch rightclick? I'd be happy if sth like below exists:)
$('div').bind('rightclick', function(){
alert('right mouse button is pressed');
});
Thanks, Sinan.