HI Leute,
Hab folgendes Problem und zwar hab ich ein PopUp geschrieben das Auftaucht wenn man einen Artikel bestellt. Jetzt funktioniert das aber im FF nicht wisst ihr vielleicht was ich da änder müsste???
Hier mal der Code:
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Warenkorb</title>
<script type="text/javascript">
function Artikel_schreiben(ArtBezeichnung,ArtMenge,ArtArtNr,ArtAbbildung,ArtEinheit,ArtPreis){
var ArtMwst=1.16;
var ArtNetto=(ArtPreis/ArtMwst); 0
var str='<table style="position: absolute; left: 0px; top: 0px;" border="1" cellspacing="0" cellpadding="0" width="300px%" height="250px"><tbody>';
str+='<tr>';
str+='<td bgcolor="#ffe600" align="left" colspan="3" valign="bottom" width="300px" height="10px">';
str+='<img src ="messbar ueberschrift_neu9.gif" width="300px">';
str+='<p><font face="verdana" size="1" color="#4F4F4F">Der Artikel wurde dem Warenkorb hinzugefügt</font></p>';
str+='</td>';
str+='</tr>';
str+='<tr>';
str+='<td align="left" valign="top" width="100px" height="100px">';
str+='<p align="left" valign="top"><img src='+ArtAbbildung+' width="100px"></p>';
str+='</td>';
str+='<td align="center" valign="top" width="200px" height="150px">';
str+='<p align="Left"><font face="verdana" size="2" color="#4F4F4F"><b>'+ArtBezeichnung+'</b></font></p>';
str+='<p align="Left"><font face="verdana" size="1" color="#4F4F4F"><b>Artikel-Nr.: '+ArtArtNr+'</b></font></p>';
str+='<p align="right" valign="bottom"><font face="verdana" size="2" color"#4F4F4F">'+ArtMenge+' Stk '+ArtPreis+' € Einzelpreis'+'</font></p>';
str+='<p align="right" valign="bottom"><font face="verdana" size="1" color"#B47100">'+ArtNetto+' € (ohne MwSt)'+'</font></p>';
str+='</td>';
str+='</tr>';
str+='<tr>';
str+='<td colspan="3" width="300px" height="30px">';
str+='<div style="float: left;" align="left" valign="top">';
str+='<input type ="button" style="background-color:#ff9b07" name="bestellen_1" value="Zum Warenkorb" class="schaltflache" onclick="javascript:ShowDocument()">';
str+='</div>';
str+='<div style="float: right;" align="right" valign="top" >';
str+='<input type ="button" style="background-color:#ffe600" name="schliessen" value="zurück zum Shop" onClick="window.close()">';
str+='</div>';
str+='</td>';
str+='</tr>';
str+='<tr>';
str+='<td bgcolor="#ff9b07" colspan="3" width="300px" height="10px" valign="bottom">';
str+='</td>';
str+='</tr>';
str+='</tbody></table>';
document.getElementById('warenkorb').innerHTML=str;
}
function ShowDocument()
{
opener.parent.bereich06.location.href="xaranshop_11_1.htm";
window.close();
}
</script>
</head>
<body>
<div id="warenkorb"></div>
</body>
</html>
Alles anzeigen
Grüße
Woercel