JQuery .popup("open") not working properly on iOS 9 device - ios

onClick event we call following
$("#popupDialog").popup("open");
$("#popupDialog").popup("open");
$("#username").focus();
the popup appears and suddenly disappear.
We are facing this issue on iOS devices , since we updated ipad and iphone to ios 9 before iOS 9 it was OK.
Mobile Application Platform : JQuery Mobile 1.4.2 using Mobilefirst 6.3 studio
How can we fix this issue ?
Thanks,

I added data-history="false" to the pop div and it is is working now

Same problem. Seems that adding
$(document).bind("mobileinit",function(){
$.mobile.hashListeningEnabled=false;
});
has an effect: the pop-up opens one time. But then after closing, the problem comes back.
Still looking into it...

Related

React 17 iOS events acting strange

I encountered a weird issue when testing our web application using iOS 15.2.1 (iPad Pro 3rd gen.) or using the Apple iPad Air/Pro Simulator. The same issue is reproducible on Chrome and Safari browsers.
This happen when clicking on two different buttons at medium pace (~500ms). The first click on the first button event fires the proper event handler. Then, when rapidly clicking on the second button, the same event as the first click is fired... This only happens with React 17.0.X. React 16 works as expected.
Here’s the very basic code sample reproducing the issue.
https://codesandbox.io/embed/react-17-events-issue-safari-mobile-pfztei?fontsize=14&hidenavigation=1&theme=dark

mouseenter event is not working in IPad Safari Browser, vesion ios 13.x

We are getting issue in IPad, Safari Browser, suddenly mouseenter events is not working after upgraded version to 13.x
It is working fine with 12.x
What could be the reason? Is there any bugs related to mouse event in ios 13.x?
What could be the alternative solution to achieve mouseenter and mouseleave in iPad safari?
don't no why it is not working after upgrade, but you can try using "touchend" event

cordova IOS app all onclick and back button not working for latest IOS 11.3.1

dear ios hybrid app rock stars,
i have developed IOS app using Framework7 with Cordova 7.0.1.
It was work fine before update mobile to IOS version 11.3.1.
But not all of devices using this app get updated to latest IOS version.
Now the problem happen.
When app open at the first time it works fine in all pages. Pages swipe and onclick to back button and menu onclick works fine.
But when we lock the phone with the app remain open behind. Then unlock the phone then click of the any function not working except the swipe of screens. onclick event and backbutton not working. Even menu also not open when we click icon for menu.
Again if we close the app completely then open again it will work fine.
only when we lock the device without close of the app (remain open) then again unlock the device and use app not working correctly. That makes the all click event not working. even menu links also not able to click.
P.s. App working fine on apple 4s with the IOS 9.3.5.
Any one have resolved this type of issue.
Video reference attached here: https://drive.google.com/open?id=1jPau0FmVak7ePCc8JNdzwJvSj3KuXBTm
there you can see menu, back and refresh icons clicked but its not working..
This is due to a bug in iOS 11.3 where the touch event timeStamp is being reported as negative value.
There have been commits to fix this in Framework7 v1 and v2 so the solution is to update the version of F7 in your app to the latest (right now that's v2.2.5 / v1.7.1).
See this discussion for more detail.

Ionic Tabs in iOS displays part of the icon at the bottom of tab

I am developing a mobile app in ionic that uses tabs.
When I transfer from one tab to the other(click the other tab) a portion of the icon is being displayed at the bottom of the tab for less than a second. It's like a flicker that disappear after a second.
It only happens on iOS. Before I was also using the same project and it doesn't happen. I'm not sure what was the cause since I did a lot(I was trying to fix the bugs in iOS9)... I updated my ionic, cordova and downloaded the latest xcode(I have 2 xcode in my workspace, I'm testing it in 6.3 and 7.0). I'm using an iPhone with iOS 8.1.
Pleases see the image below:
I got a similar issue with my tabs on iOS9. By looking at the console while running on the iOS simulator, I saw some $digest loop error.
This is a bug specific to iOS 9 caused by ngRoute. Applying the patch provided by Ionic did the trick.
Here is the related issue: https://github.com/driftyco/ionic/issues/4082
And here is the patch: https://gist.github.com/IgorMinar/863acd413e3925bf282c

Keyboard animation issue on iOS 7 devices

I was working with Xcode 4.6 with iOS 6 SDK for building our iOS app. Recently we migrated to Xcode 5 which comes with iOS 7 built-in. After migrating to iOS 7 SDK, lot of weird things are happening e.g. status bar issue, keyboard animation mess up and UIImagePickerController status bar issue.
I am not finding any solution for the weird keyboard animation issue. When I tap the username text field in my login screen, entire view is going up till the text field and its not scrollable also. Its totally screwed up. Please note that mine is a hybrid application built using cordova library. So, all the UI elements are designed in HTML5. Below are two screenshots for the key board issue.
Please suggest me how to fix this… Thanks in advance….
That seems to be a problem in web view's on iOS7. We have the same problem.
It seems fixed in iOS 7.1.

Resources