I used PJAX to dynamically change content in a on my website, tried without the django-PJAX first, and just did this:

def test(request):
  if request.META.get('HTTP_X_PJAX', False):
    return render_to_response('test/test.html')
  else: #...

when i hit a button on my website it changes the content to the content inside pjax.html, but when i rightclick and select "view-source" i only get the data inside pjax.html. If i "inspect element" with firebug i can see the whole code. I dont understand why this happens. Is it "ok"?

Cuz then i tried django-PJAX, and there i had to make 2 templates, test.html and test-pjax.html Now if I try the same thing, the data shown in "browse code" is the one in test.html.. It feels like it sends both test.html and test-pjax.html?

link|improve this question
Is the "view source" making a request to the server and gets the data once again? – Johan Jul 19 '11 at 14:25
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.