I had a file data.php
<div class="content">hello</div>
I can fetch data in main file using
main.php
<div id="content1"></div>
<script>
$.post("data.php",function(r,s){$("#content1").html(r);});
</script>
This script fetches the data from data.php even if i try data.txt
it also works
but when i convert data.php
into data.xml
this does not work
<div id="content1"></div>
<script>
$.post("data.xml",function(r,s){$("#content1").html(r);});
</script>
what should i do to fetch data from xml file. please help