Hi SUJAYS,
Please refer below sample demo.
HTML
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('input[type="checkbox"]').click(function () {
$("#lnkName").toggle();
});
});
</script>
<table>
<tr>
<td><input type="checkbox"></td>
<td><a href="#" id="lnkName">ASPSnippets</a></td>
</tr>
</table>
Demo