For a data send, where the return data contains potential updates for hundreds of elements on a page, is XML or JSON or another data format better, for usage with jQuery’s various parsing formats (invoked via ajax() success)?
For a data send, where the return data contains potential updates for hundreds of
Share
Check out this article, it outlines various pros/cons of XML, JSON and HTML when processing AJAX requests.
Personally I’d pick JSON as it uses less bandwidth & is easier to parse and use.