I have tried but not able to implement properly, I want to show the each row value onmouseover or hover function.Code:<table name="table" id="table" class="table" cellpadding="4" cellspacing="2" border="1" bgcolor="" > <tr> <th><input type="checkbox" name="allCheck" onclick="selectallMe()"></th> <th>Emp ID</th> <th>Device</th> <th>Policy</th> <th>Feature Status</th> <th>Password Management</th> </tr> <tr class="tr" bgcolor="#FFFFFF" onMouseOver="this.bgColor='gold';" onMouseOut="this.bgColor='#FFFFFF';"> <td><input type="checkbox" name="chkName" onclick="selectall()"></td> <td><input type="text" name="empId" value="" disabled="disabled" maxlength="10"></td> <td><input type="text" name="device" class="device" value="" class="device" disabled="disabled" maxlength="10"></td> <td><input type="text" name="policyName" class="policyName" value="" disabled="disabled" maxlength="10"></td> <td><input type="text" name="features" class="features" value="" class="features" disabled="disabled" maxlength="60"></td> <td><input type="text" name="password" id="password" disabled="disabled" value="" > </tr> </table>
help needed..


Reply With Quote

Bookmarks