я её и вызываю после добавления данных
$(document).ready(function()
{
$.getJSON('ajax.php', {
'action': 'get_teachers',
},
function (json) {
for(i=0; i<=json.length-1;i++){
$('#myTable > tbody').append('<tr><td id=row'+i+'>'+json[i].last_name+' '+json[i].first_name+' '+json[i].father_name+'</td><td></td></tr>');
$('#row'+i).attr('style', 'cursor: pointer;')
$('#row'+i).attr('onclick', 'location.href =\'teachersupdate.php?teacher='+json[i].id+'\'' )
};
})
$("#myTable").tablesorter({widthFixed: true, widgets: ['zebra']})
}
);