How does one in iOS (iPad/iPhone/iPod) to force the focus on an input element when the DOM is ready, with jQuery?
I've got a barcode webpage, that needs the focus to be immediately on a textfield.
I've found jQuery will do just fine for IE,Firefox,Chrome,Safari,Android but iOS mobile Safari, and iOS mobile Chrome won't let me focus on a textfield when the DOM is ready.
This is what I have so far:
$j(document).ready(function() {
$j('#barcode').focus();
});
Any ideas, guys/gals?