I spoke too soon --- it appears this only works with Firmware 2.0.
On Jun 28, 12:10 pm, Jerrod H <[EMAIL PROTECTED]> wrote:
> I just accomplished this on my site using the following:
>
> var formq=document.getElementById('searchform');
> var input=document.getElementById('keywords');
> function unselectform() {
> var input = document.getElementById('keywords');
> input.removeAttribute("selected");
> input.blur();
> }
> formq.onsubmit=function(event){
> input.setAttribute("selected", "progress");
> event.preventDefault();
> submitForm(formq);
> setTimeout(unselectform, 4000);
> }
>
> On Jun 9, 12:00 pm, Robert <[EMAIL PROTECTED]> wrote:
>
> > Does anybody have a way to dismiss the keyboard after entering text in
> > an input? I've tried some solutions on here with no luck. I'm using
> > iUI. If users click my search button, the keyboard disappears, but not
> > if they click Search on the keyboard.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"iPhoneWebDev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/iphonewebdev?hl=en
-~----------~----~----~----~------~----~------~--~---