you have to get the sortable plugin too, here you can download it : http://tablesorter.com/docs/#Download
i usually use the ready method for the sortable plugin
$(document).ready(function() {
$( "#sortable" ).tablesorter();
$( "#sortable" ).disableSelection();
});
so i'm sure that the page has already been loaded
More info :
jquery ready
if you really need to activate the function on client click you can use jquery click method
$('input[Id$="Button1"]').click(function () {
$( "#sortable" ).tablesorter();
$( "#sortable" ).disableSelection();
})
More info :
jquery selectors
More info :
jquery click