I'm wondering how I can parse XML documents returned by a search so that I can style them with CSS on a website. I'm assuming I need to turn the XML into xhtml some how first, and then style the elements accordingly. I need them to display xhtml.

Does anyone know the easiest way to go about this? I know styling straight XML with CSS is not good practice, which is why I'm thinking there must be a javascript solution.

Any insight would be great, thanks!

D

link|improve this question

This might help w3schools.com/xml/xml_to_html.asp – elclanrs Feb 3 at 4:38
feedback

2 Answers

up vote 0 down vote accepted

If you're importing XML via AJAX then there are only a few key things you need to do...

1.) The parent-most element needs an XML namespace...

<div id="ajax_search_result1" xmlns="http://www.w3.org/1999/xhtml">

2.) Use W3C standard methods (appendChild, importNode, responseXML) and NOT proprietary Microsoft methods (innerHTML, responseText) or your application will be treated like notepad text instead of an actual application. Here is roughly what the code looks like...

if (window.XMLHttpRequest) {var xmlhttp = new XMLHttpRequest();}
else if (window.ActiveXObject) {try {xmlhttp = new ActiveXObject('Msxml2.XMLHTTP')} catch (e) {try{xmlhttp = new ActiveXObject('Microsoft.XMLHTTP')} catch (e){}}}

xmlhttp.open('GET',url,true);
xmlhttp.send(null);

xmlhttp.onreadystatechange=function()
{
 if (xmlhttp.readyState=='4')
 {
  var xmlDoc=xmlhttp.responseXML;
  document.importNode(xmlDoc.getElementsByTagName('div')[0],true),id_container_obj);
 }

By using the correct code you'll have no problem styling imported XHTML. For a live demo visit my site in my profile and then at the top right click on site options.

link|improve this answer
Great, thanks! I actually went he JSON route, in which i posted yet another question. – DougP Feb 5 at 4:44
feedback

You may want to look into xslt.

link|improve this answer
1  
XSLT is the correct tool/language for this, and MSDN has an incredibly in-depth section on the standard (which is accurate, unlike w3schools). – peachykeen Feb 4 at 2:08
feedback

Your Answer

 
or
required, but never shown

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