How to use PJAX? (PJAX With PHP?)

Go To StackoverFlow.com

11

I was trying to get PJAX working with my PHP site, this is the code I am using for it:

<script src="js/jquery.js"></script> 
<script src="js/jquery.pjax.js"></script>
    <script type="text/javascript">
        $(function(){
            // pjax
            $('ul a').pjax('section')
        })
    </script>

I am just using the code they used on the PJAX demo page, but replacing the container they used (#main) with the one for my site, which was the section tag. There are no errors on the console or on the page, but it doesn't work either! Before I was using

$(function() { $('ul a').pjax('section') }); and

$('document').ready(function(){
   $('ul a').pjax('section')
});

But when I don't use either of those and just use $('ul a').pjax('section') I see this error in the console:

Uncaught no pjax container for section in jquery.pjax.js (line: 353)

Could I get some help with this? Thanks

2012-04-04 01:08
by user1302430
Does your page have a <section> tag in it? Is your server returning chrome-less content when the X-PJAX header or the _pjax search param are sent? Can you link to a demo url - Sean Hogan 2012-04-04 03:08
Actually I wasn't able to upload the PHP stuff but I tried the exact same thing with just simple plain html files, but still the same thing. You can see this here: http://sbtest.comoj.co - user1302430 2012-04-05 00:38
In that test site, replace your pjax call with $(function() { $('ul a').pjax("#main", { fragment: "#main" }); });. Or place the call at the bottom of the page - Sean Hogan 2012-04-05 02:41
@Sean Hogan Thank you so much! It works perfectly now - user1302430 2012-04-05 04:04
I've posted an answer to match our debugging. If you find it correct then please accept it - Sean Hogan 2012-04-05 12:31
I successfully use instaclick, it's awesome for PJAX - http://instantclick.i - vsync 2014-09-10 13:40


10

By default, pjax expects new pages to be delivered without the chrome - a HTML snippet that will be used as the innerHTML of the container.

In your example the container would be the first <section> tag I suppose. I don't know if pjax guarantees that it will use the first element that matches a selector - it may just replace every matching element. Probably it would be better to use an ID selector, such as #main.

Anyway, it sounds like you weren't delivering HTML snippets, but just the whole page. This almost defeats the purpose of pjax, but it can be supported by specifying a fragment in the downloaded content. Almost always this will be a selector that matches the container which will be replaced.

So, assuming you use a container with @id=main you could call pjax with

$(function() { $("ul a").pjax("#main", { fragment: "#main" }); });

Make sure that pjax is called after the document loads, otherwise the container lookup will fail.

By the way, an easier way to switch to pushState assisted navigation is with my HTMLDecor project. It requires you to change your perspective on generating HTML pages, but once you've done that you just need to add the HTMLDecor.js script to your pages and pushState is used automatically when appropriate - no config needed.

2012-04-05 12:29
by Sean Hogan
Ads