Hi,
ich habe ein so ein pop-up geöffnet:
function openZubehoer(){
var neu=window.open("url.html","Information","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=750,height=250");
neu.focus();
neu.moveTo(200,200);
};
Wenn man in dem popup auf einen Link klickt, soll ein neues popup geöffnet werden, und zwar so:
function openInfo(){
var big="";
big=window.open("newurl.html","Information","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=617,height=456");
big.focus();
big.moveTo(100,100);
};
Das neue Fenster wird aber im gleichen geladen.
Was mache ich falsch ?
GRuß Christof
ich habe ein so ein pop-up geöffnet:
function openZubehoer(){
var neu=window.open("url.html","Information","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=750,height=250");
neu.focus();
neu.moveTo(200,200);
};
Wenn man in dem popup auf einen Link klickt, soll ein neues popup geöffnet werden, und zwar so:
function openInfo(){
var big="";
big=window.open("newurl.html","Information","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=617,height=456");
big.focus();
big.moveTo(100,100);
};
Das neue Fenster wird aber im gleichen geladen.
Was mache ich falsch ?
GRuß Christof