Response title
This is preview!
$(document).ready(function() {
$('#news-feed').each(function() {
var $container = $(this);
$container.empty();
$.get('news/feed.xml', function(data) {
$('rss item', data).each(function() {
// Manipuler les nouvelles.
});
});
});
});
© 2013 jQuery Foundation
Sponsored by and others.