Tablesorter plugin - more tables and pagers on the same page

Tablesorter plugin - more tables and pagers on the same page

Hello,

I try to implement multiple tables with tablesorter plugin for jquery. What I did was to generate these tables with different ids, something as id="tblTransfers_1", id="tblTransfers_2", etc..

But I cannot figure out how to add different pagers for each of them:

<div id="pager">
    <form>
        <img src="/images/navigare/first.png" class="first"/>
        <img src="/images/navigare/prev.png" class="prev"/>
        <input type="text" class="pagedisplay" size="5" readonly="readonly" />
        <img src="/images/navigare/next.png" class="next"/>
        <img src="/images/navigare/last.png" class="last"/>
        <select class="pagesize">
            <option selected="selected" value="1">10</option>
            <option value="2">20</option>
            <option value="5">50</option>
            <option  value="100">100</option>
        </select>
    </form>
</div>

I tried with id="pager", with id="pager_1". This is shown, of course, but no functionality, and also bad position on the page (somewhere above the table for the first one, then ok)

Any solution with this?
Thanks