Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing a web app for the iPad (not a regular App Store app - it's written using HTML, CSS and JavaScript). Since the keyboard fills up a huge part of the screen, it would make sense to change the app's layout to fit the remaining space when the keyboard is shown. However, I have found no way to detect when or whether the keyboard is shown.

My first idea was to assume that the keyboard is visible when a text field has focus. However, when an external keyboard is attached to an iPad, the virtual keyboard does not show up when a text field receives focus.

In my experiments, the keyboard also did not affect the height or scrollheight of any of the DOM elements, and I have found no proprietary events or properties which indicate whether the keyboard is visible.

share|improve this question
Hm, interesting problem. Try iterating over "window"'s objects on iPad's Safari to see if there are any special objects related to keyboard support. – David Murdoch Apr 7 '10 at 14:19
@David that won't work, the keyboard is not a Javascript "window". – KennyTM Apr 7 '10 at 14:20
1  
@KennyTM. Duh. But there may be a flag related to the on-screen keyboard display in any of the window's objects. It is worth a shot. – David Murdoch Apr 7 '10 at 14:30
I tried that. Didn't find anything, unfortunately. Also compared all of the window properties three levels deep before and after showing the keyboard. None of the differences seemed relevant as indicators for the keyboard. – LKM Apr 7 '10 at 18:02

9 Answers

up vote 28 down vote accepted

I found a solution which works, although it is a bit ugly. It also won't work in every situation, but it works for me. Since I'm adapting the size of the user interface to the iPad's window size, the user is normally unable to scroll. In other words, if I set the window's scrollTop, it will remain at 0.

If, on the other hand, the keyboard is shown, scrolling suddenly works. So I can set scrollTop, immediately test its value, and then reset it. Here's how that might look in code, using jQuery:

$(document).ready(function(){
    $('input').bind('focus',function() {
        $(window).scrollTop(10);
        var keyboard_shown = $(window).scrollTop() > 0;
        $(window).scrollTop(0);

        $('#test').append(keyboard_shown?'keyboard ':'nokeyboard ');
    });
});

Normally, you would expect this to not be visible to the user. Unfortunately, at least when running in the Simulator, the iPad visibly (though quickly) scrolls up and down again. Still, it works, at least in some specific situations.

I've tested this on an iPad, and it seems to work fine.

share|improve this answer
i'm having an issue with my web app where when the input is focused on, the screen scrolls up a bit. I've otherwise disabled scrolling, but still this scrolls. Any ideas? Thanks [stackoverflow.com/questions/6740253/… – Andypandy Jul 18 '11 at 22:45
I haven't tried this yet, but it looks promising. Wouldn't .scrollTop(1) work just as well and be less obvious? – ThinkingStiff Jan 14 '12 at 3:54
Yes, scrollTop(1) should work as well; any value above 0 should work. – LKM Feb 3 '12 at 16:10

maybe a slightly better solution is to bind (with jQuery in my case) the "blur" event on the various input fields.

This because when the keyboard disappear all form fields are blurred. So for my situation this snipped solved the problem.

$('input, textarea').bind('blur', function(e) {

       // Keyboard disappeared
       window.scrollTo(0, 1);

});

hope it helps. Michele

share|improve this answer

If there is an on-screen keyboard, focusing a text field that is near the bottom of the viewport will cause Safari to scroll the text field into view. There might be some way to exploit this phenomenon to detect the presence of the keyboard (having a tiny text field at the bottom of the page which gains focus momentarily, or something like that).

share|improve this answer
That's an ingenious idea. I found a similar solution that also uses the current scroll position to detect the virtual keyboard. – LKM Apr 8 '10 at 15:20

Only tested on Android 4.1.1:

blur event is not a reliable event to test keyboard up and down because the user as the option to explicitly hide the keyboard which does not trigger a blur event on the field that caused the keyboard to show.

resize event however works like a charm if the keyboard comes up or down for any reason.

coffee:

$(window).bind "resize", (event) ->  alert "resize"

fires on anytime the keyboard is shown or hidden for any reason.

Note however on in the case of an android browser (rather than app) there is a retractable url bar which does not fire resize when it is retracted yet does change the available window size.

share|improve this answer
+1 for blur event not firing on manually dismissing the keyboard. Resize is a good idea and it would work well for Android devices. – Ankit Garg Jan 30 at 22:19

Edit: answer presumes onscreen keyboard, not external keyboard. Leaving it because info may be useful to others that only care about onscreen keyboards.

We test to see if the document.activeElement is an element which shows the keyboard (input type=text, textarea, etc). Tested works on iOS5, Chrome Mobile (Beta May 2012) and Android (ICS) and Opera (doesnt work because Opera keeps focus on element after keyboard closed).

I think it fails under some circumstances (iOS give focus to input, go to home screen, then come back to page?) but it works well enough for what we do.

The following code fudges things for our purposes (although not generally correct).

function getViewport() {    // Note viewport sizing broken in Android 2.x see http://stackoverflow.com/questions/6601881/problem-with-meta-viewport-and-android
    var viewport = {
            left: window.pageXOffset || documentElement.scrollLeft || 0,    // http://www.quirksmode.org/mobile/tableViewport.html
            top: window.pageYOffset || documentElement.scrollTop || 0,
            width: window.innerWidth || documentElement.clientWidth,
            height: window.innerHeight || documentElement.clientHeight
    };
    if (isTouchDevice && isInput(getActiveElement())) {     // iOS *lies* about viewport size when keyboard is visible. See http://stackoverflow.com/questions/2593139/ipad-web-app-detect-virtual-keyboard-using-javascript-in-safari Input focus/blur can indicate, also scrollTop: 
        return {
            left: viewport.left,
            top: viewport.top,
            width: viewport.width,
            height: viewport.height * (viewport.height > viewport.width ? 0.66 : 0.45)  // Fudge factor to allow for keyboard on iPad
        };
    }
    return viewport;
}


function isInput(el) {
    var tagName = el && el.tagName && el.tagName.toLowerCase();
    return (tagName == 'input' && el.type != 'button' && el.type != 'radio' && el.type != 'checkbox') || (tagName == 'textarea');
};

function getActiveElement() {
    try {
        return document.activeElement;  // can get exeption in IE8
    } catch(e) {
    }
};
share|improve this answer

I haven't attempted this myself, so its just an idea... but have you tried using media queries with CSS to see when the height of the window changes and then change the design for that? I would imagine that Safari mobile isn't recognizing the keyboard as part of the window so that would hopefully work.

Example:

@media all and (height: 200px){ #content {height: 100px; overflow: hidden;} }

share|improve this answer
1  
Very clever idea. Unfortunately, in my tests, showing the keyboard did not affect the height values used to evaluate media queries. – LKM Apr 7 '10 at 19:55

Well, you can detect when your input boxes have the focus, and you know the height of the keyboard. There is also CSS available to get the orientation of the screen, so I think you can hack it.

You would want to handle the case of a physical keyboard somehow, though.

share|improve this answer

I did some searching, and I couldn't find anything concrete for a "on keyboard shown" or "on keyboard dismissed". See the official list of supported events. Also see Technical Note TN2262 for iPad. As you probably already know, there is a body event onorientationchange you can wire up to detect landscape/portrait.

Similarly, but a wild guess... have you tried detecting resize? Viewport changes may trigger that event indirectly from the keyboard being shown / hidden.

window.addEventListener('resize', function() { alert(window.innerHeight); });

Which would simply alert the new height on any resize event....

share|improve this answer
2  
Unfortunately, in my tests, the keyboard did not trigger the resize event. – LKM Apr 8 '10 at 15:19
+1 for links to documentation – badcat May 18 '12 at 15:10

This solution remembers the scroll position

    var currentscroll = 0;

    $('input').bind('focus',function() {
        currentscroll = $(window).scrollTop();
    });

    $('input').bind('blur',function() {
        if(currentscroll != $(window).scrollTop()){

        $(window).scrollTop(currentscroll);

        }
    });
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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