In my ionic-cordova application, I have drag and drop functionality where I use pan events to drag and drop and use this:
document.elementfrompoint(x,y)
returns empty object on latest iOS 13.2. After analyzing the the latest upgrade was only the WKWebView engine for iOS. When I downgraded and fall back to UIWebView by:
<preference name="CordovaWebViewEngine" value="CDVUIWebViewEngine" />
Observed that it returned a complete element object.
And in both the cases I tried passing same x and y co-ordinates.Still it is returning a empty object. Can anyone help me to resolve this issue?