fish-guts
Erfahrenes Mitglied
Moin
Ich hab ein Problem. Ich habe einen JavaScript Code gschrieben, der unter IE super läuft, aber dem Firefox nicht passt. Kleiner Codeausschnitt:
Woran kanns liegen? Kann mir jemand helfen?
Gruss FG
Ich hab ein Problem. Ich habe einen JavaScript Code gschrieben, der unter IE super läuft, aber dem Firefox nicht passt. Kleiner Codeausschnitt:
Code:
function getSource(section)
{
source = window.open("source.htm","source");
switch(section)
{
case 'toolbar':
var bg = tb.bg.value;
var fc = tb.fc.value;
var hov = tb.hov.value;
var hovfont = tb.hovfont.value;
var ff = tb.ff.value;
var fs = tb.fs.value;
source.document.write("<html>");
source.document.write("<span style=\"font-size:10pt; color:silver;font-family:Arial;\">");
source.document.write("/* Dieser Quelltext wurde automatisch generiert. Es handelt sich um ein CSS Stylesheet. Die Erläuterungen zu den Farben stehen unten. */ <br /><br />");
source.document.write("/* Erzeugende Datei: inkasso.php */");
source.document.write("<body>");
source.document.write("<pre><span style=\"font-family:Arial;color:green;size:10pt;\"><strong>.menu<\/strong><\/span> \{<br>");
source.document.write(" <span style=\"font-family:Arial;color:red;size:10pt;\"><strong>padding<\/strong><\/span>:<span style=\"font-family:Arial;color:orange;size:10pt;\"><i>0px<\/i><\/span>;<br />");
source.document.write(" <span style=\"font-family:Arial;color:red;size:10pt;\"><strong>width<\/strong><\/span>:<span style=\"font-family:Arial;color:orange;size:10pt;\"><i>100%<\/i><\/span>;<br />");
source.document.write(" <span style=\"font-family:Arial;color:red;size:10pt;\"><strong>position<\/strong><\/span>:<span style=\"font-family:Arial;color:orange;size:10pt;\"><i>absolute<\/i><\/span>;<br />");
source.document.write(" <span style=\"font-family:Arial;color:red;size:10pt;\"><strong>float<\/strong><\/span>: <span style=\"font-family:Arial;color:orange;size:10pt;\"><i>auto<\/i><\/span>;<br />");
source.document.write("\}<br />");
Woran kanns liegen? Kann mir jemand helfen?
Gruss FG