Skip to content

Instantly share code, notes, and snippets.

View wub's full-sized avatar

Jarrod Mosen wub

View GitHub Profile
// Usage
var forumURL = 'http://forums.com';
$('#discourse-latest-container').getDiscourseTopics(forumURL, 'latest');
// Fetch latest topics
(function($) {
jQuery.fn.getDiscourseTopics = function (url, page) {
if ($(this).exists()) {
$.getJSON(url + '/' + page + '.json', function (data) {
var topics = data.topic_list.topics,