He encontrado este ejemplo de un plugin jquery llamado arte de google
(Ver ejemplo).
El ejemplo es el siguiente:
index
Código PHP:
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/jquery-plugin-arte.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$.arte({'ajax_url':'ajax.php', 'ajax_type':'xml'}).start();
$("#test1").arte("tests test1");
$("#test2").arte("tests test2");
$("#test3").arte("tests test3");
});
</script>
<div id="test1">0</div>
<div id="test2">0</div>
<div id="test3">0</div>
Y el ajax.php
Código PHP:
<?php
header("Content-type: text/xml");
?>
<?xml version="1.0" encoding="ISO-8859-1"?>
<content>
<tests>
<test1>1</test1>
<test2>2</test2>
<test3>3</test2>
</tests>
</content>
Pero da error el ajax.php y no lo carga el ajax del index.. Hay alguna solución?