Mislav Marohnić
Mislav Marohnić
Does your server serve full HTML pages on pjax navigation, where `` elements already have appropriate classnames that you want to preserve even after pjax extracts just the fragment of...
I just experienced first-hand how much it's a PITA to read HTML elements/attributes outside from pjax fragment. My solution was to put everything inside the fragment element and read it...
In the works! Thanks for suggesting ;)
I agree that relative paths should not be transformed into absolute. Does anyone want to take a stab at a pull request?
There will be no requests when going Back/Forward using browser buttons, gestures, or keyboard shortcuts, because of pjax internal cache. The previous content is restored from cache instead of making...
Do you have any other code on your site that uses `history.pushState/replaceState`?
You shouldn't use other pushState stuff with pjax. Or, if you use it, do that at your own risk, but then you can't ask for our support, since the README...
You're right; good catch. Looks like nasty browser bug (I tested in Chrome; not sure about other browsers). We should try to apply some workaround like you suggested, but restore...
This might slow down navigation due to the extra overhead of HTML serialization and parsing, and might have other adverse side-effects as well. If you want to make a significant...
> Some browsers may not return HTML that exactly replicates the HTML source in an original document Yeah that's what I'm worried about. We can explore this direction, and I...