Is there a way to capture the event in jquery/javascript when a user hits the "Return" key in the iphone browser keyboard? I'm trying to either hide the keyboard on the press or activate some function.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

You could try this:

<script type="text/javascript">
document.onkeyup=function(e) {
    if(e.which == 13){
        $('inputID').blur();
        //rest of function

        return false;
    }
}
</script>

Are you using a library?

Update
Depending on the application, an input submit would hide the keyboard and trigger a function:

<form id="searchForm" OnSubmit="doSearch(this.searchTerm.value); return false;">  
  <input type="search" name="searchTerm" autocorrect = "off" />
  <input type="submit" value="Search" class="hidden" />
</form>

You could even hide the input button with CSS: .hidden {display: none;}

link|improve this answer
doesn't seem to work. using the jquery and jquery mobile libraries. – locoboy May 9 '11 at 5:41
How about triggering a function via input submit? – Josiah May 9 '11 at 18:14
It does work when I put alerts inside the function, but if I want the keyboard to disappear, how would I do this? – locoboy May 9 '11 at 23:35
feedback

This is what hides the keyboard:

$('#inputID').blur();
link|improve this answer
Yup! Did you want help putting it into a function? – Josiah May 10 '11 at 0:45
Haha, no; I just had no idea that was the function. – locoboy May 10 '11 at 6:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.