When displaying a web page using window.open in IE mode of Edge, the URL is displayed in title bar

Copper Contributor

When a web page is displayed using window.open in IE mode of Edge, the value set in the title tag of html is usually displayed in the title bar, but in rare cases, the URL is displayed instead.

 

The options are as follows

window.open('Web page URL', 'window name', "top=0, left=0, width=1200, height=900, scrollbars=yes, status=no, titlebar=no, toolbar=no, location=no, menubar=no, resizable=yes");

 

We know that there are the following patterns for displaying the title bar.

 

Pattern 1
1, First, "Untitled" is displayed in the title bar.
2, Next, the URL is displayed.
3, The screen title is displayed at the end.

 

Pattern 2
1, First, "Untitled" is displayed in the title bar
2, The URL is displayed, but the title is not displayed.

 

Pattern 3
1, "Untitled" is displayed in the title bar at first
2, Screen title is displayed without URL display

 

I would like to solve the problem of the URL being displayed (pattern 2).
Pattern 2 occurs when you delete the cache of IE.

0 Replies