pjax loads HTML from your server into the current page without a full reload. It's ajax with real permalinks, page titles, and a working back button that fully degrades.

learn more… | top users | synonyms

0
votes
0answers
16 views

request.path (and url_for) seem to be incorrect

I created a simple dropdown in my view which uses a query string parameter to set the quarter in my app. %select(id="qtr_select" onchange="location.href=this.options[this.selectedIndex].value;") - ...
-1
votes
0answers
23 views

How to reload title and meta tags from cakephp layout in pjax?

Pjax works perfectly in cakephp , but the issue is that it discard the layout which contain the title and meta tags. You can add a title tag in every view to solve that issue , but i dont think its ...
-2
votes
0answers
29 views

Rails admin crashes my webrick server [closed]

I am under Windows XP. I have: Ruby 1.9.3 Rails 3.2.9 rails_admin 0.4.7 When I try to hit any link with pjax my webrick server is crashed. I heard that solution is to disable pjax. But i don't ...
0
votes
1answer
43 views

TemplateResponse doesn't render?

i just switched to TemplateResponse for using pjax. It now renders the layout correctly, but the content isn't rendered at all. even with django-pjax disabled. my view code: def product(request, ...
0
votes
3answers
119 views

Pjax not replacing data after successfull GET

I am trying to get PJAX working with my Rails app, and they requests are successful as I see the new html content in the response in the console, but the content doesn't get replaced. I get the ...
-3
votes
1answer
127 views

pjax does't work

help,i hava a trouble with the pjax . i download the lastest pjax at https://github.com/defunkt/jquery-pjax then i code as the demo,but it does't work. the main.html <!DOCTYPE html> ...
1
vote
1answer
134 views

PJAX and Firefox back button issue

I'm testing jquery.pjax.js and noticed a problem. In my minimum test project, strange behavior like below happens: Access to index.php in fireflx Click a pjax link: location bar and page contents ...
0
votes
1answer
96 views

pjax fragment troubles

I'm trying to use pjax's fragment option to refresh only a part of a page. Nothing happens on click and there are no errors thrown, only a hard page reload. No ajax call is being made. Testing in ...
0
votes
1answer
99 views

How to get PJAX to work on a button and a link?

I have a number of buttons like this: <button data-pjax class="btn btn-inverse" type="button" onclick="location.href='http://mybuttonurl.com'">my button</button> And a number of urls ...
0
votes
0answers
77 views

pjax click event double fired

how can i fix this problem with pjax, when i have toggle event to fadein and fadeout, and when i click on that element it fadein then fadeout, on one click ? pjax call: $.pjax.defaults.timeout = ...
1
vote
2answers
158 views

Cleanly deploying PJAX or Turbolinks application

If I have an application that uses PJAX or Turbolinks then I am seeing a problem when new code is deployed to the server - say Heroku. The issue is that users who are accessing the application will ...
0
votes
1answer
145 views

Custom response header in PHP/Codeigniter

I'd like to set a custom response header such that I can use PJAX (ajax+pushState) to submit forms. My basic use case is a login form (http://mySite.com/login) which redirects to the user's library ...
2
votes
1answer
152 views

pjax submit form URL redirection

PJAX's documentation states that Github uses $.pjax.submit() in submitting a Gist form. A desired feature of an ajax form submission which Github nicely implements is that the URL redirects from the ...
0
votes
2answers
165 views

Try set event 'click' on 'pjax:popstate' - not working

Small example of Pjax: http://indapublic.ru/pjax/ function handler set event click on "Test Link" and output "handler" in Javascript console. function handler() { console.log('handler'); // ...
0
votes
2answers
94 views

Is there any way to programmatically call and execute pjax from within my javascript file?

I have a function that waits for a user to click on an input of type text and then waits for the user to press the down and up arrow keys. When the user presses the down and up arrow keys the function ...
0
votes
1answer
44 views

Synchronous document editing [closed]

Is is possible to emulate Google doc functionality with Rails app? All I need is synchronous document editing, with which a number of people can see how the document is being edited while one person ...
0
votes
0answers
80 views

PJAX javascript standalone unable to execute jQuery after ajax load

I'm using the Standalone version of PJAX found here: https://github.com/thybag/PJAX-Standalone It works fantastic, the jQuery-PJAX doesn't work for me hence, the standalone usage. Now, what the ...
1
vote
1answer
119 views

pjax vs wiselinks, differences

What is the difference, and which one is faster? +1 for wiselinks, it can be used like this: <a href="/?page=2" data-push="true" data-target="@catalog">2</a> so it can target <div ...
0
votes
1answer
243 views

Page reload after pjax

everybody! I try to use jquery-pjax I have html code with fragments: <li id="left_menu_item"><a href="myurl">Caption</a></li> ... <div class="right-block" id="content"> ...
1
vote
1answer
261 views

history.pushState - not working?

I want to change html without reload. I do it like: $('#left_menu_item').click(function(e) { if (!!(window.history && history.pushState)) { e.preventDefault(); ...
1
vote
1answer
190 views

Rails and ajax global error handling issue

I have the following global ajax error handler: App.Utils.AjaxGlobalErrorHandler = { isUnauthenticatedStatus: function (request) { var status = request.status return status == 403; }, ...
0
votes
1answer
45 views

pjax breaks jquery.chosen

I use jquery chosen plugin for multiple select control, when I include pjax into my project, chosen doesn't work after I redirect to link. But if I press F5 chosen now works
0
votes
1answer
88 views

Why is PJAX stopping Nestable working?

I have 3 columns in my app. Each column has an unordered list. I am using Nestable to drag and drop list items between lists. The mark up is as follows: <div class="row-fluid span12"> <div ...
0
votes
1answer
65 views

pjax return false to prevent scroll?

When using pjax with the duration variable how can you set a function to prevent the page scroll from changing? var duration = 400 $('a.pjax').pjax('#main', { duration: duration }) $('#main') ...
0
votes
0answers
60 views

how to implement a js code in pjax`s container in flask

I use pjax to refresh a div, the code will be refreshed contain some js codes to implement some function, but when i use it, i found nothing but only flat code in pjax container.Why.. Any help is ...
0
votes
1answer
116 views

Resetting all scripts on PJAX page change

If I have different pages that I fetch using PJAX, the scripts I use one the first page I access persist to the second, and any page accessed after that through PJAX. I've tried resetting functions, ...
1
vote
1answer
76 views

rack-pjax isn't recognizing `jQuery ->`

In the application.js file, I have the requirements, and the on JQuery declaration: //= require jquery //= require jquery_ujs //= require bootstrap //= require jquery.pjax //= require_tree . jQuery ...
0
votes
1answer
204 views

PJAX Header in Django

I'm trying to pjaxify some of my views with jQuery-pjax and django-pjax. As I understand it, every pjax request sends an additional header X-PJAX: True. However, I can't find it anywhere even when (I ...
0
votes
0answers
76 views

On pjax:popstate event $(document.body) gives last page's dom

I have a simple PJAX form which works perfectly. When I submit the form, new content is loaded via pjax. Now if I click the back button and read $(document.body) to initialize some JS, it returns the ...
1
vote
0answers
354 views

Destroy/hide twitter bootstrap tooltips when using pjax

I've had some issues with the twitter bootstrap tooltips not being removed from the DOM element when using pjax on a Rails app. For example, when I mouseover an element with a tooltip, then click a ...
0
votes
1answer
133 views

pjax — must links be inside the pjax-container?

I am using https://github.com/rails/pjax_rails. I want to have my links inside a "permanent" portion of the page. I.e. in my layout I have <%= link_to "Some Action", some_action_path %> ...
0
votes
0answers
123 views

Multiple PJAX Requests

I am trying to update 2 separate divs with PJAX. My PJAX fails and only the second one is loaded. Here's an example: <div id="content-1"></div> <div id="content-2"></div> ...
0
votes
0answers
49 views

timeago yii extensions inside pjax'ed container

i need timeago works when loaded using pjax. here's my div inside pjax container <div class="timeagoWrap"> <?php $timeago = "<time class=\"timeago\" ...
4
votes
4answers
339 views

Posting a form with file attachments using pjax (and jQuery.form?)

I successfully use pjax for links and forms (GET as well as POST). But now I have a form which also has to send an <input type="file"...>. Since pjax does not support this, I had a look at ...
0
votes
0answers
405 views

yii framework CActiveform dependent dropdown won't work inside pjax'ed content

here's my dependent dropdown php code: <?php $find= new SomeModule; $form=$this->beginWidget('CActiveForm', array( 'action'=> Yii::app()->createUrl('someurl'), ...
1
vote
1answer
175 views

DISQUS and Pushstate AJAX or Hashbang

Has anyone gotten Disqus to work properly with something like PJAX or even regular #! AJAX. Lets look at some examples of people who are doing this: http://donejs.com/ ...
0
votes
1answer
110 views

Rails, pjax and title tag

I have method: # Set html <title> def page_title lang if request.xhr? response.headers["X-PJAX-Title"] = t lang else @html_title = t lang end end It's should works, but I have ...
0
votes
0answers
158 views

Can't see custom events triggering for pjax

I'm trying to see if I can get some custom events triggering in order to diagnose whether or not I have pjax wired up properly. From what I can tell, pjax isn't working at all. Here's my script block ...
0
votes
0answers
110 views

Multiple pjax use() calls to change content in two divs

just starting to mess around with pjax through this documentation http://yuilibrary.com/yui/docs/pjax/ I made this simple page to test with. When I click on link 1 i wish to change the content in the ...
1
vote
1answer
110 views

How do I intercept pjax page changes from a chrome userscript?

Can I detect history.pushState url changes from a chrome user script (not extension), without polling (or breaking out of the script's isolated world to intercept the call in the web page's javascript ...
4
votes
2answers
184 views

PJAX / Back-Button destroys Datatables

In our Rails 3.2 App with rack-pjax enabled appears the following Problem: You click on a link, a page with datatable in it loads trough pjax. Everything is fine. You click on antoher link the page ...
0
votes
1answer
61 views

Adding PJAX support to current Rails project

I have an existing website which uses standard Rails layouts. Clicking each link in the website currently loads and renders the relevant view. Recently though, I've heard about PJAX and i'd like to ...
1
vote
1answer
185 views

Rails, pjax and DataTables

I've got a Rails app utilizing pjax (pjax.heroku.com/) so that my header and navbar don't ever reload. It's all fine and dandy and working, BUT in one of my views I'm using a data table ...
0
votes
1answer
243 views

Rails: error with pjax “Uncaught TypeError: Object [object Object] has no method 'pjax' ”

Gemfile: gem 'pjax_rails' app/assests/javascripts/application.js : //= require jquery //= require jquery_ujs //= require_tree . //= require jquery.pjax $(function() { ...
1
vote
0answers
285 views

PJAX + jQuery modal

I'm building this web page and I want the news to appear in jquery.modal, but with sharing functionality, that means with the URL. I found PJAX for the solution and then I wanted to put the link in ...
0
votes
1answer
102 views

PJAX - AJAX error when space or symbol included in URL?

So I have built a website using PJAX. I have created a search box that will allow me to send a search query via GET, but any time I include a space (%20) or any other symbol, PJAX throws an AJAX error ...
2
votes
1answer
479 views

AdSense on history.pushState enabled page

First off, I know this has been discussed over and over again. But let's take this as a "late 2012 edition" since things tend to change rapidly on the internet. I have this web page which is a ...
1
vote
1answer
218 views

jQuery .on() not working with PJAX?

$("#img-switcher").on("switchImageEvent", function(event, triggerID){ $(this).attr('src',triggerID); }); $("#page-container").on("click", "img.img-switcher", function() { var newSRC = ...
1
vote
1answer
297 views

Mostly PJAX site with some AngularJS

I have a site using PJAX all over the place and I have a few pages that are using AngularJS. For the AngularJS pages I would like to continue to use PJAX to get all the benefits associated with not ...
1
vote
2answers
437 views

HTTP caching with pjax (jquery-pjax)

Browsers and proxy caches use the URL as a cache key. In pjax the URL is used to request both the partial Pjax page and a full page, therefor both responses will be cached under the same key. This ...

1 2 3