Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

my problem is that i want to return an xml file from server back to client and parsing it using ajax function of jquery. this is the code:

client:

$("#submit").click(function() 
{       
    $.ajax(
    {  
        type: "POST",  
        url: "search.php",  
        data: "whatever",
        dataType: "xml",
        async: false,
        success: function(xml){
            var data = $('doctor',xml).text();
            alert(data);
        }
    });
});

server(php file)

header('Content-type: text/xml');
echo '<?xml version="1.0" encoding="utf-8"?>';
echo "<tables>";
echo "<doctor>Someone</doctor>";
echo "</tables>";

I have a blank alert and i do not know why??


ok i found it. my php file was in this form

//some code
include("other.php");
//some other code

where the other.php file was the file i posted above. i cut/paste the header so the final php file would be

//some code
header('Content-type: text/xml');
include("other.php");
//some other code

and other.php

echo '<?xml version="1.0" encoding="utf-8"?>';
echo "<tables>";
echo "<doctor>Someone</doctor>";
echo "</tables>";

now it works perfect. Thanks for your quick replies!

share|improve this question
Does $(xml).find("doctor") work? – Ryan Olds May 18 '11 at 23:20

4 Answers

Try this: var data = $(xml).find('doctor').text()

In your example, 'xml' is not a jQuery object.

share|improve this answer
This won't work in IE per stackoverflow.com/questions/562283/… – Avitus May 18 '11 at 23:41
ty for the quick reply! not working either – omerta May 18 '11 at 23:45

This is working fine

================= 
Post.php file
=================

if($_GET['id']!="")
{   
    $array = array('satyam'  => 'satyam',
                   'class'   => 'B.TECH',
                   'company' => 'Ranosys');
}   

$new ='<?xml version="1.0" encoding="iso-8859-1"?><data>';
foreach($array as $key => $values)
{   
    $new .= "<$key>$values</$key>";
}
echo $new.'</data>';

=================

function load_data()
{
    $.ajax({
        url: "post.php",
        async: false, // stop browser for another activity
        data: "id=satyam",
        // dataType :'xml',
        error: function(e, b, error) { 
            for(var i in e)
            {
              // alert(i);
            }
            alert(e.respone);
        },
        success: function(msg) {
            //alert($response);
            var data = $(msg).find("satyam").text();
            alert(data);
        }
    });
}
share|improve this answer

You need to parse this XML (I really don't understand why , but...), you can do it by do:

$(xml).find('doctor').text();

Bye. :)

share|improve this answer

You have to change your function to be:

$("#submit").click(function() 
{       
    $.ajax(
    {  
        type: "POST",  
        url: "search.php",  
        data: "whatever",
        dataType: "xml",
        async: false,
        success: function(xml){

                    var xmlDoc;

                    if (window.DOMParser) {
                        parser = new DOMParser();
                        xmlDoc = parser.parseFromString(xml, "text/xml");
                    }
                    else // Internet Explorer
                    {
                        xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
                        xmlDoc.async = "false";
                        xmlDoc.loadXML(xml);
                    }

                    var $response = $(xmlDoc);

                 var data = $response.find("doctor").text()

            alert(data);
        }
    });
});

The reason for the if (window.DOMParser) { is that you'll have an issue with IE doing the parsing.

share|improve this answer
not working at all. i run the application on firefox 4. i tried IE9 but it doesn't show the alert at all. – omerta May 18 '11 at 23:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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