Цитата:
|
function show_popup(){
var popwnd = window.open("about:blank","new","width=3000,height =2000,location=0");
popwnd.document.open();
popwnd.document.write("<html><body><font size='12px'>" + textmessage + "</font></body></html>");
popwnd.document.close();
popwnd.focus();
}
|
Так скрипт почему то вообще перестаёт работать.
Я посмотрел какие параметры может иметь window.open( адрес файла, имя окна, параметры ), Как правильно сделать так чтобы в этом открываюшемся новом окне проигрывался какой то звук.
Что то типо того
Цитата:
|
function show_popup(){
var popwnd = window.open("http://yakim.at.ua/alt.swf
","new","width=3000,height=2000,location=0");
popwnd.document.open();
popwnd.document.write("<html><body><font size='12px'>" + textmessage + "</font></body></html>");
popwnd.document.close();
}
|