Сообщение от WqR128
|
Фильтр просто так
|
В смысле "просто так"?
Может лучше так сделать?
$.getJSON("https://spreadsheets.google.com/feeds/list/"
+ spreadsheetID + "/od6/public/values?alt=json", function(data) {
var html=[];
$(data.feed.entry).each(function() {
if (this.gsx$slag.$t === location.pathname)
html.push(
'<article class="' + this.gsx$type.$t + '"><header>'
+'<h2>' + this.gsx$title.$t + '</h2>'
+'</header><img src="' + this.gsx$image.$t + '"/></article>'
);
});
$('section').prepend(html.reverse().join(''));
});