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

ios - Is 'init' forbidden as *part* of a variable name? -

file - Python: AttributeError: 'str' object has no attribute 'readlines' -

c# - Get the Class name in a class with atribute inside a attribute method -