index: no longer using snippets
[bootswatch] / js / bootswatch.js
1 $('a[rel=tooltip]').tooltip({
2         'placement': 'bottom'
3 });
4
5 function parseRSS(url, callback) {
6   $.ajax({
7     url: 'http://ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=10&callback=?&q=' + encodeURIComponent(url),
8     dataType: 'json',
9     success: function(data) {
10       callback(data.responseData.feed);
11     }
12   });
13 }