Hello,
I am using jqTouch for my web app which is running on different phones including the iPhone. The issue I have is with the iPhone.
When I set a value on the form using the jQuery function val(), the keyboard opens up automatically. I don't want that to happen when I am changing the value or just adding a default value to a pre-exisiting form.
Do you know a way to block the keyboard from popping up when val() is called on a form input? I tried to use $(':focus').blur() right after the call to val() but it is ugly. The keyboard opens and closes very fast which is not acceptable.
Laurent