I need to be able to check if the first entry in a form field is a character. Something similar to below (but with the 'magic' replacing 'somethinginhere'. Thanks in advance
<script type="text/javaScript">
function Validator() {
if (document.theForm.Code.value!= "<somethinginhere>") {
alert("Code needs to start with a letter");
}
}
</script>