Forum Moderators: open
<script language="JavaScript">
<!--
document.searchcandidate.company-1.focus();
//-->
</script>
as it is right now this works fine, however i have multiple records so when I make it look like this
document.searchcandidate.company-1.focus();
it breaks. I need to have the - in there because I am using php to explode it.
document.forms["searchcandidate"].elements["company-1"].focus();
;)