Table traversing

by Komlan

HTML

<table id="tab">
    <tr><th>Actor</th><th>Role</th><th>Gender</th></tr>
    <tr><th>Actor</th><th>Role</th><th>Gender</th></tr>
</table>
<input id="click"type="button" value="click" />

JavaScript

$('#click').click(function(){
$('#actor_table  tr  ').each(function(index){
    $()
});
});