Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. ```function displayResults(responseJson) {
  2. console.log(responseJson);
  3. $("#results-list").empty();
  4. $("#results-list").append(
  5. `<li><h3>${responseJson.items.snippet.title}</h3>
  6. <p>${responseJson.items.snippet.description}</p>
  7. <img src='${responseJson.items.snippet.thumbnails.default.url}'>
  8. </li>`
  9. );
  10. }``
  11.  
  12. function displayResults(responseJson) {
  13. console.log(responseJson);
  14. $("#results-list").empty();
  15. $("#results-list").append(
  16. `<li><h3>${responseJson.items.snippet.title}</h3>
  17. <p>${responseJson.items.snippet.description}</p>
  18. <img src='${responseJson.items.snippet.thumbnails.default.url}'>
  19. </li>`
  20. );
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement