0

I have a site which is running on Asp.net and on front-end I am using JavaScript for UI functionality. I am using window.open() function of JavaScript and its working fine on web browsers. But when I am testing this site on my I pad then this link is opening on new tab instead of new window. I have spent several hours to fix this issue Please suggest.Immediate response will be Appreciated.

I have got the same as my problem in this question On clild window close cannot send value to parent window in JavaScript for iPad Safari but unfortunately this question has no answer.

Community
  • 1
  • 1

2 Answers2

1

It is the property of browser, if the browser wants to open the link in a new tab or in a window.

void
  • 36,090
  • 8
  • 62
  • 107
  • so should i have to do setting of the browser in Ipad? – Himanshu Rastogi Feb 23 '15 at 09:07
  • I guess safari has only tabs, It is highly browser dependent thing, And browser will not allow you to modify its functionality this way. – void Feb 23 '15 at 09:17
  • Thanks for the quick response but i am not using safari ,I am using chrome on my ipad.Please let me know the setting of chrome for opening link on new window – Himanshu Rastogi Feb 23 '15 at 09:25
  • A new window means a new instance of the particular browser.. More RAM consumption.. IPAD and even browser will not simply allow you that. – void Feb 23 '15 at 09:25
1

the safari on iPad you mean? no, it only has tabs. even though there's a separate window for private mode, which groups all private tabs under it.

But strictly speaking, no, there isn't a function for that. And same goes with most, if not all, other 3rd party browsers on iOS.

Peter W
  • 75
  • 1
  • 8
  • If there is any setting exist then please let me know about the browser setting? – Himanshu Rastogi Feb 23 '15 at 09:17
  • If by setting you mean for the window settings, unfortunately, there isn't one. The mobile safari is meant to be simplified, and the traditional desktop's windowed environment directly contradicts ios' design. And even if there were windows, those windows would be for all applications that are laid out on a "desktop" space, which is also non existent in ios. I suggest that you find a workaround or simply use "new tabs" if it works for you – Peter W Feb 23 '15 at 09:23