Har följande popup kod:
function imgPopup(url,x,y){
MyWin = window.open("","nyhet","width=" + x + ",height=" + y + ",toolbar=no,location=no,directories=no,status=no,menubar=no");
MyWin.focus();
with(MyWin.document){
open();
write("<html>\n<head>\<title>Nyheter</title>\n</head>\n<body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0 rightmargin=0>\n");
write("<img src=\"" + url + "\" width=\"" + x + "\" height=\"" + y + "\"></a>\n");
write("</body>\n</html>\n");
close();
}
}
funkar så klart bra i alla webbläsare förutom IE på mac där det likförbaskat blir marginal till höger och botten. Why?
/E