I have IE version 11.0.9600.17358
window.open('editProperties.php?fileid=661BEAB9735A615D65B3FCF676A2F83F', 'editProperties', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=570,height=580,left=490,top=362');
throws invalid argument error. I tried creating a test.html and calling it just by name:
window.open('test.html')
it does not work, throws the same error. Only time I was able to use it was as:
window.open('', 'editProperties','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=570,height=580,left=490,top=362')
or
window.open('about:blank')
As soon as I pass a url as the first argument, it throws the error. Anyone has any ideas?