I don't know if this will solve the problem to you, but it did to me. I just
changed my script from something like:

$(document).ready(function() { 
    $("table") 
    .tablesorter({widthFixed: true, widgets: ['zebra']}) 
    .tablesorterPager({container: $("#pager")}); 
}); 

to

$(document).ready(function() { 
    $("#tableid") 
    .tablesorter({widthFixed: true, widgets: ['zebra']}) 
    .tablesorterPager({container: $("#pager")}); 
}); 

and, of course, added a new id="#tableid" to my table. 

-- 
View this message in context: 
http://old.nabble.com/JQuery-%2B-TableSorter-%2B-TableSorterPager-%2B-%28Container-%21%3D-Div%29-%3D--undefined-error-tp15580200s27240p27592483.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.

Reply via email to