I'm trying to use jquery-pjax with django-pagination (actually django-endless-pagination).
The table and page list is located in the div I'm updating with pjax.
The problem appears when loading another table page. The url query is appended with "_pjax=true" (that's how django-endless-pagination) works), but when I use <a href="{{ request.get_full_path }}">Refresh table</a> outside the pjax updated div it works fine.. no "_pjax=true" is appended.
Here's the code I'm using for pjax activation.
$(function () {
$('a[data-pjax]').pjax()
)}
Maybe this is related to pjax'ed data. Page links .click() are not attached with pjax? Tried with jquery .on() in the code above, but still no luck (maybe because of my javascript poor skills)
Each 'another page' link has data-pjax='#offer-table' set.
jQuery v. 1.7.1 jquery-pjax head branch as of Feb 2th 2012.