Hallo leute
ich habe eine Frage: wenn ich mit meinen Popup sktipt/code ein Bild öffne und dann nochmals ein bild öffne (ohne das 1. zu schliessen) dann wird einfach das alte Bild angezeigt!
wie kann ich das verhindern, also dass das neue Bild im selben Popup-fenster erscheint (angepasst in der grösse!) ohne dass ich das alte schliessen muss?
mein skriptcode:
HTML
<html>
<head>
<script language="javascript" type="text/javascript">
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.availWidth)?Math.floor(Math.random()*(screen.availWidth-w)):60;TopPosition=(screen.availHeight)?Math.floor(Math.random()*((screen.availHeight-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.availWidth)?(screen.availWidth-w)/2:60;TopPosition=(screen.availHeight)?(screen.availHeight-h)/2:100;}
if(pos=="default"){LeftPosition=130;TopPosition=130}
else if((pos!="center" && pos!="random" && pos!="default") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);
if(win.focus){win.focus();}}
</script>
</head>
<body>
[url='TEST.jpg']LINK[/url]
</body>
</html>
Alles anzeigen
und hier der Code der ich im Bodybereich habe:
gruss Quadro