function getRedditFeed() {
var topic = $('#select-topic').val();
$.getJSON("https://www.reddit.com/r/" + topic + ".json", function(data) {
$.each(data.data.children, function(i, item) {
$('
' + item.data.title + '').appendTo("#posts");
});
});
}
$(document).ready(function() {
getRedditFeed();
$('#select-topic').change(function() {
$('#posts').html(''); // clear posts
getRedditFeed();
})
});