onclick="javascript:selectAllCheckBox(this,document.thisJSP.chkUser);"
Here , the Latest version of firefox and chrome shows below error message :-
TypeError: document.thisJSP is undefined
Where .thisJSP is my Form Name ...
Thnx in advance.
Here is my Form
<form action="AjaxRightsMenu.jsp" name="thisJSP" method="POST">
<FieldSet>
<Legend vAlign="Top">
<Font color="green">User Details </Font>
</Legend>
<div vAlign="Top" style="overflow: scroll; height: 280px; max-height: 280px">
<input type="hidden" name="hdnScrollValue" value="<%=myController.scrollValue%>">
<Table Align="left" border="1" cellpadding="0" cellspacing="1" vAlign="Top" Width="100%">
<Thead>
<tr>
<th width="9%" class="unsortable">
<B><input type="button" name="chkSelectAll" value="Check All" onclick="javascript:selectAllCheckBox(this,document.thisJSP.chkUser);"></B>
</th>
<th align="left" Width="10%" colspan="1">Group Name</th>
<th align="left" Width="10%" colspan="1">Loc Name</th>
<th align="left" Width="10%" colspan="1">APP Name</th>
<th align="left" Width="10%" colspan="1">Menu Name</th>
<th align="left" Width="10%" colspan="1">View Rights</th>
<th align="left" Width="10%" colspan="1">Add Rights</th>
<th align="left" Width="10%" colspan="1">Edit Rights</th>
<th align="left" Width="10%" colspan="1">Del Rights</th>
<th align="left" Width="10%" colspan="1">Auth Rights</th>
</tr>
</Thead>