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

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -