views:

24

answers:

2

Did you know?

"Diagnostics Results" is an invalid value for the window title in window.open function

wtf?

A: 
window.open('about:blank','Diagnostics Results')

Works for me. What platform/OS?

Jonathan Feinberg
Note though, that this doesn't set the window *title*.
Piskvor
There is no window "title" in the window.open function. I figured that this might be what the OP meant.
Jonathan Feinberg
+2  A: 

The window.open function doesn't include a title argument.

You're probably confusing it with the target / name - which doesn't allow a space.

Greg