I am using Onsen UI and Monaca to build a mobile app for iOS and Android. I would like to set focus on the #search-cities input field, once the #search-city page is visible.
I've tried:
$(document).on('pageinit', '#search-city', function() {
console.log('pageinit: #search-city');
// doesn't work!
$('#search-cities').focus();
});
I am testing it on iOS and focus() doesn't set the search field on focus. Is there any way to do this with the onsen/monaca framework?