Skip to content

Instantly share code, notes, and snippets.

@AnkurVyas-BTC
Last active March 12, 2017 18:48
Show Gist options
  • Select an option

  • Save AnkurVyas-BTC/9840f82423baa2a98fb5f7b5955cde27 to your computer and use it in GitHub Desktop.

Select an option

Save AnkurVyas-BTC/9840f82423baa2a98fb5f7b5955cde27 to your computer and use it in GitHub Desktop.
Ajax call to get books
$.get('/books', function (data) {
booksListHtml = HandlebarsTemplates['book_list']({
books: data
});
$('#book-list').html(booksListHtml);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment