I want to carry out some validation in javascript before posting, so basically I want to:
- Alter textbox value
- use Onchange attached to the textbox to fire off a Javascript script.
- the script will check that a colon is at the right place in the value.
- if that isnt the case, change the textbox back colour to red.
- all this is done before secondary validation in the struts form and action.
first problem is I cannot seem to pass the textbox value to the script, is this prevented under struts? second problem is the changing of the back colour of the textbox on error.
<html:text property="date1_1" maxlength="8" value="<%=WeekOne.get(1)%>" size="15" onchange="validateBox(this.value)"/>
<script type="text/javascript">
function validateBox(textBox)
{
alert("here");
var p = textBox.value();
alert(p);
}
</script>