Finding the interesting railscast on pjax http://railscasts.com/episodes/294-playing-with-pjax

I would like to ask for some advice if there are other tools / gems that can update a portion of a page? I have tried to build something similar very basic ajax with an div that replaced content, wich was not ideal.

Pjax looks promising but are there other options out there that anyone would recommend over pjax?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The point of interest with pjax is not to update arbitrary content without reloading the page. jQuery does that (as do most JavaScript frameworks). The idea is to combine this "basic" feature with the HTML 5 push state API to improve the users experience (for example use of the browsers next/previous buttons whenever they perform an Ajax call). Unfortunately, the HTML5 history API is not implemented the same way by all browsers. To get the push state / history API part working consistently you may also have a look to History.js that provides fallback features for HTML 4 browsers.

Anyhow, jQuery and tons of plugins (Ajax Form, jQuery tabs, etc.) allow you to update some page content without reloading the whole page.

link|improve this answer
Thanks for the clarification, I try PJAX for now and see how things go performance wise – Rubytastic Jan 30 at 11:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.