Hejsan!
Använder denna funktionen i IE:
function showDivInNewWindow(layer)
{
mailBody = document.getElementById(layer).innerHTML;
wndHnd = window.open("","wndHnd","status=no,scrollbars=yes,width=480,height=320");
wndHnd.document.open();
wndHnd.document.focus();
wndHnd.document.write("<html>\n<head>\n<title>SWL mail</title>\n<link rel='stylesheet' href='style_mail.css'>\</head>\n\n<body>\n");
wndHnd.document.write(mailBody);
wndHnd.document.write("\n</body>\n</html>");
wndHnd.document.close();
}
men den fungerar inte i FireFox. Vet någon varför?
Det skapas ett nytt fönster men det blir tomt.
Exempel på länken som anropar funktion för att öppna fönstret och vida innehållet i en DIV i det.
<a href="javascript:showDivInNewWindow('body_93954712')">[Hero Built] Weapons -- Thank You</a>
Exempel på lagret som ska visas i fönstret.
<div id="body_93954712" style="display: none; position:absolute; width:480px; height:240px; z-index:2; left: 50; top: 25px;"><table width="100%" bgcolor="#565656"><tr><td width="1%"><b>Time:</b> </td><td width="99%">2003-12-16 17:29:29</td></tr><tr><td width="1%"><b>From:</b> </td><td width="99%">Eclipse.hero</td></tr><tr><td width="1%"><b>Title:</b> </td><td width="99%">[Hero Built] Weapons -- Thank You</td></tr><tr><td colspan="2"> </td></tr><tr><td colspan="2"><b>Body:</b></td></tr><tr><td colspan="2">Greets ...
<br>
<br>I want to thank you for your recent purchase of a [Hero Built] Weapon and I hope it serves you well.
<br>
<br>Enclosed is the waypoint to my vendor for future reference. It's just east of Coronet on Corellia. If you have any questions, feel free to email them to me and I will try to respond in a timely manner.
<br>
<br>Also is enclose the waypoint to a new city you may be interested in. Mythoria is located just 1.5km south of Coronet. It is a small city, and needs residents. If you are not already a resident of a city, please consider moving in this one.
<br>
<br>Thanks again for your purchase, and your consideration of this new city.
<br>
<br>Hero
<br>[Hero Built] Weapons
<br>For the *Hero* in you.</td></tr></table></div>