This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

DEVELOPERS FORUM - Open new window from javascript. window.open()

Vardhan - Thursday, January 23, 2014 8:36 AM:

Hi,

How can I open a new window using javascript? I tried window.open("D:\Aspects.html","Aspects","width=600,height=600");  but I am facing error with this.

Please help me.

Thanks-Vardh.



fli - Friday, January 24, 2014 4:18 AM:

Hi, 

See if one of these fit

window.open("../customer/test_page.html");

      or

showModalDialog('../tests/test.html', 'test', 'help:0;resizable:1;status:0;');
- Christoffer