tags:

views:

110

answers:

1

Are left click, right button of mouse in IE, is same in Firefox?? Can anyone specify proper method to handle them efficiently using Javascript??

+1  A: 

use the onclick and oncontextmenu events for left-clicks and right-clicks respectively.

Triptych