0
日付をソートするにはどうすればよいですか?
現在、日付はソートされていません。日付をrssから最新のものに並べ替えます。
$(document).ready(function() {
$('#divRss').FeedEk({
FeedUrl: 'https://www.google.com/finance/company_news?q=SGX:533&ei=EeiDWaGGMpXUuATxloPgAw&output=rss'
});
var r = Math.floor(Math.random() * 256);
var g = Math.floor(Math.random() * 256);
var b = Math.floor(Math.random() * 256);
$('#example, .itemTitle a').css("color", getHex(r, g, b));
$('#example').click(function() {
$('.itemTitle a').css("color", getHex(r, g, b));
});
function intToHex(n) {
n = n.toString(16);
if (n.length < 2)
n = "0" + n;
return n;
}
function getHex(r, g, b) {
return '#' + intToHex(r) + intToHex(g) + intToHex(b);
}
});
最新のものを最初に取得しますが、動作しないようです。 – nnnnnn