Skip to content

Instantly share code, notes, and snippets.

@kevinbluer
Created October 24, 2013 03:55
Show Gist options
  • Save kevinbluer/7131090 to your computer and use it in GitHub Desktop.
Save kevinbluer/7131090 to your computer and use it in GitHub Desktop.
Bluedot News Order Tweak
// from this...
$("#newsContainer").rss(
"https://news.google.com/news/feeds?q=%22horizon+media%22&safe=off&bav=on.2,or.r_cp.r_qf.&bvm=bv.50165853,d.dmg,pv.xjs.s.en_US.seW1cfrvSKg.O&biw=1440&bih=735&um=1&ie=UTF-8&output=rss", {
limit: 4,
entryTemplate: '<li onmouseover="hover(this)"><a href="{url}" target="_blank">{title}</a><br><span class="newsDate">{date}</span></li>'
});
});
// to this...
$("#newsContainer").rss(
"https://news.google.com/news/feeds?q=%22horizon+media%22&safe=off&bav=on.2,or.r_cp.r_qf.&bvm=bv.50165853,d.dmg,pv.xjs.s.en_US.seW1cfrvSKg.O&biw=1440&bih=735&um=1&ie=UTF-8&output=rss&scoring=d", {
limit: 4,
entryTemplate: '<li onmouseover="hover(this)"><a href="{url}" target="_blank">{title}</a><br><span class="newsDate">{date}</span></li>'
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment