freeCodeCamp/views/partials/trello.jade

13 lines
406 B
Plaintext

#trello
script.
(function() {
$.ajax({
url: '/api/trello',
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'))
}
);
})();