I\'m trying to recompile an app for iOS 7, since nothing of the old one works so far. One of the many problems is that I\'m using some inputs inside UIWebViews. Text inputs,
In our case this would fix itself as soon as user scrolls. So this is the fix we've been using to simulate a scroll on blur on any input or textarea:
$(document).on('blur', 'input, textarea', function () {
setTimeout(function () {
window.scrollTo(document.body.scrollLeft, document.body.scrollTop);
}, 0);
});