XML insted of JSON
XML insted of JSON
rganesh.info
Posts: 1Questions: 0Answers: 0
Hello all,
I want to use XML data's insted of JSON can anyone help me out...
Thanks in advance
I want to use XML data's insted of JSON can anyone help me out...
Thanks in advance
This discussion has been closed.
Replies
[code]
$(document).ready(function(){
$.ajax({
type: "GET",
url: "whitelist.xml",
dataType: "xml",
success: function(xml) {
[/code]
[code]
<?xml version="1.0" encoding="utf-8" ?>
6781 2012-03-12T14:50:42-05:00 6783 2012-03-12T14:50:42-05:00 6782 2012-03-12T14:50:42-05:00
[/code]
Allan