I have this input that is in a velocity file
<input name="$name_GradePoints" id="$name_GradePoints" value="$!value_GradePoints" type="text" size="5" maxlength="11"/>
and I am trying to get it to use a simple jQuery change event.
<script type="text/javascript">
$('.target').change(function() {
Something will happen.
});
</script>
.target will end up being the id on the input, I know that part.
That script is going to end up being a validator for the input.
I am just confused on what to pass in the change for jQuery
$name_GradePoints OR #$name_GradePoints OR #{$name_GradePoints}