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

When input field at bottom of screen has focus , keyboard push up webview , and the upper part of the page is not visible.

I want to prevent keyboard pushing up webview.

Anyone has idea ?

share|improve this question

1 Answer

up vote 2 down vote accepted

On focus, set window.scrollTo(0,0); This prevents keyboard from pushing up webview completely

$('input').live('focus', function(e) {
    e.preventDefault(); e.stopPropagation();
    window.scrollTo(0,0); //the second 0 marks the Y scroll pos. Setting this to i.e. 100 will push the screen up by 100px. 
});

If you don't want to set a static value for your Y scroll position, feel free to use this short plugin I've written that automatically aligns the keyboard underneath the input field. It's not perfect, but it does the job. Just call this on focus as shown above:

setKeyboardPos(e.target.id);
share|improve this answer
It works! Thank you !!! – Yajap Dec 12 '12 at 13:53

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.