I have one html table.
<table id="tbl_1">
<tr>
<td>ABCD</td>
<td>ABCD</td>
</tr>
<tr>
<td>ABCD</td>
<td>ABCD</td>
</tr>
</table>
I can add selectable
class like
$(document).ready(function () {
jQuery('#tbl_1').selectable({
filter: "td"
});
});
I want to add selectable
class to that table when i select more than one cell of table. I don't know on which event i can do this. Any help would be appreciated. Thanks.
You can add seletable class to the table by using below code.