I would like to use $.ajax() to request a page, but load only fragments of that page. I know you can specify what page fragments you want with .load() but I was wondering if this is possible with $.ajax?
|
For those of you who are wondering, stoplion is referring to this feature: Loading Page Fragments (scroll down on the page):
Since $.get() doesn't appear to support it, I assume that $.ajax wouldn't either. A simple way to implement this would be the following:
This would be the equivalent of
However, note that the special syntax (' #selector') means that scripts present in the loaded HTML will not be executed. See Script Execution in the .load() docs. |
|||||||||||
|
|
You could get your fragment via post, append the html to a div with display: none; Then use the selector to get the fragment that you want and append it to the region that you wish to display. Air Code:
|
|||
|
|
|
The easy solution with the load method:
Only use the Ajax method for more complex scripts such as posting or getting from a PHP script or JSON file otherwise it will slow down your website. |
|||||
|