I\'m attempting to chain multiple function calls in my script, but I keep getting Uncaught TypeError: $(...).tablesorter(...).tablesorterPager is not a function
whe
Assuming you have the appropriate plugin files installed (in the appropriate order if order matters)
Uncaught TypeError: $(...).tablesorter(...).tablesorterPager is not a function
is usually encountered when there are conflicts between jQuery and other libraries. To stay out of trouble, call $.noConflict()
and don't forget to run your jQuery code after the document is ready
$.noConflict();
jQuery(document).ready(function($){
function InitializeTableSorter() {
var pagerOptions = {
//object definitions in here
};
$("#transaction").tablesorter({
//function stuff in here
}).tablesorterPager(pagerOptions);
}
});