+ 1
Who now how can i open little window in javascript?
Who can helps me?
4 Answers
+ 3
That can looks like i.g.;
function openWindow (myUrl) {
var myWindow = window.open(myUrl, "nextWindow", "width=400,height=500,left=50,top=100");
myWindow.document.write("<p>Hi! I am a new window</p>");
myWindow.focus();
}
+ 1
Thanks š
0
What is myWindow?
0
ŠŃŠ¾Š³ŃŠ°Š¼Š¼ŠøŃŃ #1/Programmer #1 myWindow - is as in the question above asked - a next new window (āpopupā), which can be opened through javascript code.