hiiilfe

eisbeer

Grünschnabel
frage:

ich habe in der "Links Spalte" unterhalb der URL-Eingabe im IE6.0 folgendes JS eingefügt:

javascript:window.open('http://localhost/cgi-bin/fav/fav.pl?add='+self.location,'Favoriten','width=420,height=600,scrollbars=yes,resizable=no,dependent=yes');

wenn ich jetzt auf das drauf klicke öffnet sich das window auch, aber im normalen IE window wo ich grad gesurft ab steht jetzt nur
[object]


Wie kann ich das umgehen?

Vielen Dank im voraus, eisbeer
 
:)

<html>
<head>
<script language="JavaScript">
function pOpUpWiNdOw() {
window.open('http://localhost/cgi-bin/fav/fav.pl?add='+self.location,'Favoriten','width=420,height=600,scrollbars=yes,resizable=no,dependent=yes');
opener.location='deineseite.html';
}
</script>
</head>
<body>
<a href="javascript:void(null);" onclick="pOpUpWiNdOw()">blub</a>
</body>
</html>
 

Neue Beiträge

Zurück