Reference a JSF InputBox
I have javascript firing from an onclick event:
the script:
<script type="text/javascript">
function showAlert(cForm){
alert("test");
document.cForm.getElementById('text7').value = "C:\\testagain123.rtf"
}
I get the error that 'document.cForm' is not an object or is null.

