The 'resize' event detect right on android but in the IOS it doesn't detect it
$( window ).resize(function() {
//code
});
The 'resize' event detect right on android but in the IOS it doesn't detect it
$( window ).resize(function() {
//code
});
Make sure that you viewport is set correctly. You should not have it bound to device-height
. see : https://stackoverflow.com/a/13551413/390330