I want to open new tab/window in browser with my pwa project.
I use following codes for this purpose :
window.open(url,'_system');
window.open(url,'_blank');
window.location.href=url;
document.location.href=url;
The first two lines worked find in andoroid.
But none of them worked in ios.
how to resolve this problem in ios ?