mouseevent - Listening to 4th and 5th mouse buttons in Chrome apps (for browser navigation) -
i have chrome packaged app embedded webview. there buttons history , forth in browser, listen keyboard , mouse events too.
this snippets catches both alt-arrow keys , multimedia buttons, not 4th , 5th mouse buttons used browser navigation:
$("html").on("keydown mousedown mouseup", function (event, data) {     console.info(event); }); how detect mentioned mouse buttons?
 
 
  
Comments
Post a Comment