Try putting the focus() inside of a window.setTimeout. So like this:
input.observe('blur', function() {
window.setTimeout(this.focus);
});
I didn't test it but I've done things similar to get around the issue.
Try putting the focus() inside of a window.setTimeout. So like this:
input.observe('blur', function() {
window.setTimeout(this.focus);
});
I didn't test it but I've done things similar to get around the issue.