I’m nitpicking here I know, but…
I would love to just press after entering my password to log in, instead of having to move my mouse over the green Login screen and click the green button.
(Referring to downloaded desktop Trader app)
Thanks.
I’m nitpicking here I know, but…
I would love to just press after entering my password to log in, instead of having to move my mouse over the green Login screen and click the green button.
(Referring to downloaded desktop Trader app)
Thanks.
I 2nd this request, it is very annoying to me when i hit “Enter” and nothing happens.
The “log in” feels like it was designed to be used on a “touch screen” device and not a desktop computer.
thanks
I just saw this gained a bunch of votes today out of the blue, why did you guys had to make me aware of this, now I feel the pain each time I log in.
Hey I did it: just tested by editing the code on the console of my browser, this is what you guys need to do:
// Get the input field (you need to add id="password_field" to the password input on the html
var input = document.getElementById("password_field");
// Execute a function when the user releases a key on the keyboard
input.addEventListener("keyup", function(event) {
// Number 13 is the "Enter" key on the keyboard
if (event.keyCode === 13) {
// Cancel the default action, if needed
event.preventDefault();
// you need to add id="login_button" to the button element on the html
// Trigger the button element with a click
document.getElementById("login_button").click();
}
});