event handling - jQuery mobile button on enter or spacebar -
I have a simple button, which must be pressed using the login or spacebar key (due to access to the desktop). I have the following:
$ ("#back-home"). On ("tap", function () {window.location.reload ();}); In addition to "tap" I need an event for the login and spacebar.
$ ("#back-home"). ("Tap keypress", function (e) {if (e.type == "tap" || E. == "13" || E. == "32") {window.location.reload () ;}});
Comments
Post a Comment