I am trying to open a new window on a button click with the below code, but the button event is not triggered on iOS Safari. I can’t use inAppBrowser for this because it needs to work as a web app.
buttonClick() {
const newWindow = window.open(this.website.url, '_system');
newWindow.focus();
}
I appreciate any feedback