1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| <html>
<head>
<script src="http://www.toutes-les-solutions.fr/phpbb/js/jquery.js" type="text/javascript"></script>
<link rel="stylesheet" title="defaut" href="http://www.toutes-les-solutions.fr/phpbb/css/tutos.css" type="text/css"></link>
<script language="Javascript">
function Chargement () {
$.ajax({
url: "http://www.toutes-les-solutions.fr/phpbb/xml/partage.xml",
type: "GET",
dataType: "html",
success: function(data) { alert($(data).find("table.partage").html()));},
error: function(type) {alert("Error "+type.status+" : fail while trying to load "+address);}
});
}
</script>
</head>
<body onLoad="Chargement();">
</body>
</html> |