Hello,
maybe someone can help me? When I try to work this script,
"ges_auktion_preis" + "ges_post_preis" = they hang one behind the other.
for example:
<script language="JavaScript">
<!-- rechnet die Gesamtsumme aus
function gesamtBetrag(ges_auktions_preis, ges_post_preis)
{
var Ergebnis = (ges_auktions_preis + ges_post_preis); // The problem,
if there is 10 + 20 =1020
return Ergebnis;
}
function schreibe_gesamt(ges_auktions_preis, ges_post_preis)
{
var Wert3;
Wert3 = gesamtBetrag(ges_auktions_preis, ges_post_preis);
document.rechenform.gesamt.value = Wert3;
}
//-->
</script>
Please help
M. Behner