Recent content by Dead Wizard

  1. D

    Javascript help - validating and doing calculations in an html form?

    I have this script: function valName() { valid = true; if (getElementById("name").value = "") { alert("Please enter your name"); valid = false; } else { valid = true; } } function valAddress() { valid = true; if (getElementById("address").value = "") { alert("Please enter your address")...
Back
Top