---
title: "problem med nytt fönster i FireFox"
type: "forum-thread"
url: "https://www.webforum.nu/amne/javascript/121249-problem-med-nytt-fönster-i-firefox"
topic: "JavaScript"
topic_url: "https://www.webforum.nu/amne/javascript"
author: "The_Hulk"
published: "2005-01-28T15:39:37.000Z"
updated: "2005-01-28T21:26:25.000Z"
replies: 2
views: 314
page: 1
pages: 1
language: "sv-SE"
site: "webForum — webforum.nu"
rights: "Upphovsrätten till varje inlägg tillhör dess författare."
attribution: "Citera som: webForum, https://www.webforum.nu/amne/javascript/121249-problem-med-nytt-fönster-i-firefox"
---

# problem med nytt fönster i FireFox

## #1 — The_Hulk, 2005-01-28T15:39Z

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">&nbsp;</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>
```

Permalänk: https://www.webforum.nu/p/121249

## #2 — Jojoxx, 2005-01-28T19:57Z

Ändra på **wndHnd.document.focus();** till **wndHnd.focus();** så borde det fungera.

Permalänk: https://www.webforum.nu/p/1540962

## #3 — The_Hulk, 2005-01-28T21:26Z

Tack så jätte mycket, det fungerade perfekt.

Permalänk: https://www.webforum.nu/p/1541032

---

Tråden på webben: https://www.webforum.nu/amne/javascript/121249-problem-med-nytt-fönster-i-firefox
