Why Nostr? What is Njump?
2024-06-11 11:37:10

James Edwards on Nostr: I recently learned of an issue on the iPhone (but not iPad) when using FKA -- if you ...

I recently learned of an issue on the iPhone (but not iPad) when using FKA -- if you tab from an `<input>` to a `<select>`, the menu opens automatically, but when you choose an option or ESC to close it, focus is reset to the top of the page, thereby creating a keyboard trap.

Here's the fix:

```
document.addEventListener('blur', (e) => {
if(e.relatedTarget === null) {
e.target.focus();
}
}, true);
```

#javascript #ios #iphone #fka
Author Public Key
npub1t4u2jqzxdjr66fmdkvfgggs08tpkz8uagr2wp7dd4058vuantc9qdu07pz