jQuery Demo: Working With XML Documents

Posted November 27, 2007 at 7:05 AM

Tags: ColdFusion, Javascript / DHTML

As we learn about AJAX (Asynchronous Javascript and XML), our first thought is that it is very cool. Our second thought is usually that XML sucks and it's such a pain in the butt to work with. With that discovery, many of us turn to using AJAX purely as a text/HTML delivery system or we switch to using JSON (Javascript Object Notation) which is infinitely easier to work with on the client. And, while I tend to go with JSON for my AJAX functionality, let's not forget that XML is a very cool delivery format.

If you have to use XML, you might want to consider using jQuery as well. It's very rare that you see any examples of jQuery being used with XML, but the fact is, all the features that make jQuery so amazing for XHTML traversal and searching also hold true for XML documents. The jQuery factory method ($) can take, as one of it many data types, an XML document object model. Once you do this, you can pretty much use the resultant jQuery stack as if it were an XHTML document object model (which should make you much more comfortable).

To demonstrate this, let's set up a rather simple ColdFusion page that just returns some XML data to an AJAX request:

 Launch code in new window » Download code as text file »

  • <!--- Build the XML into a ColdFusion XML document. --->
  • <cfxml variable="xmlGirl">
  •  
  • <person type="girl">
  •  
  • <head>
  • <eyes value="brown" />
  • <hair value="brown" />
  • </head>
  •  
  • <torso>
  • <bust value="34A" />
  • <navel value="pierced" />
  • </torso>
  •  
  • <legs>
  • <waist value="24" />
  • <hips value="36" />
  • <calves value="22" />
  • </legs>
  •  
  • </person>
  •  
  • </cfxml>
  •  
  •  
  • <!--- Convert XML to a string. --->
  • <cfset strGirlXml = Trim( ToString( xmlGirl ) ) />
  •  
  •  
  • <!---
  • Set the length of the content. This will help the browser
  • know when the request is completel.
  • --->
  • <cfheader
  • name="content-length"
  • value="#Len( strGirlXml )#"
  • />
  •  
  • <!---
  • Set the XML document type. This will help the AJAX calling
  • program to determine which type of data is being returned
  • (XML, JSON, Script, etc).
  • --->
  • <cfcontent
  • type="text/xml"
  • variable="#ToBinary( ToBase64( strGirlXml ))#"
  • />

Notice that we are building the XML document using ColdFusion CFXml tags. We could have easily done this same task using ColdFusion's CFSaveContent tag for buffered output, but I think there is something nice about using CFXml to ensure that only proper XML structures are created. This ColdFusion XML document is then converted to a string and streamed back to the client.

Ok, now that we have our XML feed set up (girl.xml.cfm), let's create the HTML page that will consume this data:

 Launch code in new window » Download code as text file »

  • <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  • <html>
  • <head>
  • <title>jQuery Demo: Using jQuery With XML</title>
  •  
  • <!-- Linked files. -->
  • <script type="text/javascript" src="jquery-latest.pack.js"></script>
  • <script type="text/javascript">
  •  
  • // This function will handle the xml Onload event
  • // handler. It will be passed the XML data object
  • // and the status of the XmlHttpRequest object.
  • function XmlOnLoad( xmlData, strStatus ){
  • // Let's start out by converting the XML data
  • // returned by the AJAX request into a jQuery
  • // XML document object model.
  • var jData = $( xmlData );
  •  
  • // Get the person object (but only if it is a girl).
  • var jGirl = jData.find( "person[ type = 'girl' ]");
  •  
  • // Get the direct children of the girl. These
  • // will represent the sections of the body.
  • var jSections = jGirl.children();
  •  
  • // For each of the section, we want to create
  • // an element in the girl definition list. Get a
  • // pointer to said definition list.
  • var jList = $( "#girl" );
  •  
  •  
  • // For each section, create a list item.
  • jSections.each(
  • function( intSectionIndex ){
  • var jSection = $( this );
  • var jTerm = $( "<dt></dt>" );
  •  
  • // Set the term text.
  • jTerm.text( jSection[ 0 ].nodeName );
  •  
  • // Append term to list.
  • jList.append( jTerm );
  •  
  •  
  • // Now, for each part of the section, we are
  • // going to need to create a list.
  • jSection.children().each(
  • function( intPartIndex ){
  • var jPart = $( this );
  • var jDef = $( "<dd></dd>" );
  •  
  • // Set the DD text.
  • jDef.text(
  • " - " +
  • jPart[ 0 ].nodeName + ": " +
  • jPart.attr( "value" )
  • );
  •  
  • // Append to list.
  • jList.append( jDef );
  • }
  • );
  • }
  • );
  • }
  •  
  •  
  • // When the document has loaded, request the girl
  • // XML object which will then use to populate the
  • // XHTML document.
  • $(
  • function(){
  • $.get(
  • "girl.xml.cfm",
  • {},
  • XmlOnLoad
  • );
  • }
  • );
  •  
  • </script>
  • </head>
  • <body>
  •  
  • <h1>
  • jQuery Demo: Using jQuery With XML
  • </h1>
  •  
  • <dl id="girl"></dl>
  •  
  • </body>
  • </html>

This code looks complicated because there are a lot of comments, but really, it's quite simple. The magic here is that in my AJAX callback method, I am taking the returned XML document and creating a jQuery stack object:

 Launch code in new window » Download code as text file »

  • var jData = $( xmlData );

jData, our jQuery instance object, now contains the XML document object model (#document) which can be traversed using any of jQuery's sweet ass functions (ex. find(), children(), parent(), etc.).

The code of our page takes the XML document, which defined body parts, and uses the data to populate a Definition List. Running the above code, we get:

jQuery Demo: Using jQuery With XML

head
- eyes: brown
- hair: brown
torso
- bust: 34A
- navel: pierced
legs
- waist: 24
- hips: 36
- calves: 22

So, while raw XML can be complicated to work with, using XML in conjunction with jQuery can make things much easier. I am not advocating using this over JSON, as I think JSON is the bee's knees; but certainly, in a scenario where XML is your only option (as it might be with something like centralized input validation), jQuery is certainly something you're gonna want to check out.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Permalink  |  Other Searches  |  Print Page


You Might Also Be Interested In:




Reader Comments

Nov 27, 2007 at 1:38 PM // reply »
2 Comments

Thanks for the excellent article! I was trying to work out how to use jQuery with XML a few weeks back and this article clears things up perfectly! :D


Nov 27, 2007 at 1:51 PM // reply »
6,516 Comments

@Guy,

Glad to help. Yeah, you really don't see many examples with this. Most of the time, just a footnote about "This also works with XML". So, I figured I would put this out there.


Nov 30, 2007 at 7:14 AM // reply »
24 Comments

Hi Ben,

Good article. I haven't looked into JQuery yet (only CF8 Ajax functions and Spry) but it's something I do want to experiment with and this will help.

I do have a question though. Why are you converting the XML to base64 and then to binary - I couldn't figure out why that was necessary.


Nov 30, 2007 at 12:05 PM // reply »
6,516 Comments

@James,

I do that because I find using the CFContent tag to set the type of data and stream the data quite convenient. By streaming a binary variable, the CFContent takes care of all the white space management. With an XML file, you have to be careful not to return leading white space (or at least it is best practice). By streaming the variable, you know for sure that none of the pre-page processing will cause the XML data to be malformed.


bay
May 23, 2009 at 4:32 AM // reply »
1 Comments

great article!
here's a quick question..
I'm very VERY new to all this...
so I'm rack my brain trying to get how ajax and jquery all work.
say if I have three buttons...each with ID 1, 2, and 3.
I have an xml file with 3 different pieces of info each with an id of 1, 2, and 3 as well. How would I make a string that takes the id of the button...matches it to the ID of the xml...then spits out the corresponding info?


Jul 16, 2009 at 8:39 PM // reply »
1 Comments

Hey Ben, you saved my life. I needed to build a 3-select menu decision tree with data driven by an XML file. I thought I couldn't be able to do it using jquery, because I was googling xpath and jquery and reading a lot about how jquery not supporting xpath but this will work. Thanks.


Jul 18, 2009 at 1:28 PM // reply »
6,516 Comments

@Nick,

Glad to help. If you get stuck, drop us a line.


Oct 5, 2009 at 5:27 AM // reply »
1 Comments

Hi all,
When i try to parse an xml which is in string using jquery, it doesnt work with ie whereas it perfectly works in mozilla and other browsers. Can any body help me in this issue thanks in advance.

-Srini


Oct 16, 2009 at 7:13 AM // reply »
2 Comments

Hi Srini

I had the same issue when I started out using this blog post from Ben - but then I got to know about this: http://dev.jquery.com/ticket/3143

Its an issue with IE in the sense that it does not recognise a string as XML when passed through the jQuery Constructor and hence will never traverse it; but in FF, the same code would work fine.

The fix for this is also given in the link I provided above.

Cheers
Sreenath


Oct 16, 2009 at 7:55 AM // reply »
6,516 Comments

@Srinivasan, @Sreenath,

Yeah, IE has some issues parsing XML that we input manually. That link provided above by @Sreenath looks good. Rest assured, though, that IE can handle XML that comes back via AJAX (as far as I know).


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 21, 2009 at 6:47 PM
Hal Helms - Real World Object Oriented Development, Sarasota - Day Five
@charlie griefer, Thank you.. ... read »
Nov 21, 2009 at 5:15 PM
Using ColdFusion Structures To Remove Duplicate List Values
@Jose Galdamez, Oh heh yeah I didn't paste the whole code. I should have defined the vars -- my bad. It's fixed thou. Thanks. ... read »
Nov 21, 2009 at 4:49 PM
Styling The ColdFusion 8 WriteToBrowser CFImage Output
Great work yet again Ben! Whilst I didn't use this whole code, I copied some of your regex code for a similar problem with the lack of an alt attribute and unescaped ampersands in CFIMAGE for Railo 3 ... read »
Nov 21, 2009 at 1:13 PM
My First ColdFusion Builder Extension - Encrypting And Decrypting CFM / CFC Files
@Ben, Because I am pedantic, I just want to make sure that everyone knows there is absolutely no encryption going on. There is only encoding and obfuscation. The cfencode tool only obfuscates your C ... read »
Nov 21, 2009 at 12:28 PM
Using ColdFusion Structures To Remove Duplicate List Values
@Jody I can't seem to get your code sample to work. If you are still having problems, try this code out and see if it gets you what you wanted. <!--- Comma delimited list with various duplicates ... read »
Nov 21, 2009 at 11:03 AM
Groovy Operator Overloading Does Not Work In The ColdFusion Context
Hi Ben, Thanks for this informative post. Now I am reading ur old posts too ... read »
Nov 21, 2009 at 10:56 AM
HostMySite.com Has The Best ColdFusion Hosting
@Mehul, Yes very nice people, however several downtimes per day which was not acceptable. Hence we had to move out. I am glad you are having good luck with them so far. ... read »