freeCodeCamp/views/partials/trello.jade

13 lines
429 B
Plaintext
Raw Normal View History

2015-02-17 21:06:46 +00:00
#trello
script.
(function() {
$.ajax({
2015-02-17 22:14:25 +00:00
url: 'http://freecodecamp.com/api/trello',
2015-02-17 21:06:46 +00:00
type: 'GET'
}).done(
function(data) {
var trello = document.createElement('div');
$(trello).html(data.trello + ' <a href="https://trello.com/b/BA3xVpz9/nonprofit-projects">(view them)</a></h2></div>').prependTo($('#trello'))
}
);
})();