I have just started to learn about the wonderful world of JavaScript and have the following problem:
I am using this script (called by an onLoad):
<script language ="JavaScript">
function datenubernehmen()
{
a = opener.printybestell.printymodel.value;
b = opener.printybestell.printyschrift.value;
c = opener.printybestell.printyfarbe.value;
bild = opener.vorschau.src;
bildwidth = opener.vorschau.width;
bildheight = opener.vorschau.height;
document.printybestellzwei.printymodel.value = a;
document.printybestellzwei.printyschrift.value = b;
document.printybestellzwei.printyfarbe.value = c;
document.vorschau.src = bild;
document.vorschau.width = bildwidth;
document.vorschau.height = bildheight;
opener.close();
}
// -->
</script>
to transfer form and picture source data from one page (the opener) to the currently active page (document). It works fine with IE, but N6 seems to ignore the script completely.
Anyone have any ideas...???
I am using this script (called by an onLoad):
<script language ="JavaScript">
function datenubernehmen()
{
a = opener.printybestell.printymodel.value;
b = opener.printybestell.printyschrift.value;
c = opener.printybestell.printyfarbe.value;
bild = opener.vorschau.src;
bildwidth = opener.vorschau.width;
bildheight = opener.vorschau.height;
document.printybestellzwei.printymodel.value = a;
document.printybestellzwei.printyschrift.value = b;
document.printybestellzwei.printyfarbe.value = c;
document.vorschau.src = bild;
document.vorschau.width = bildwidth;
document.vorschau.height = bildheight;
opener.close();
}
// -->
</script>
to transfer form and picture source data from one page (the opener) to the currently active page (document). It works fine with IE, but N6 seems to ignore the script completely.
Anyone have any ideas...???