const searchForm = document.querySelector("form"); 2 const searchResultDiv = document.querySelector(".search-result"); 3 const container = document.querySelector(".container"); 4 let searchQuery = ""; 5 const APP_ID = "Use Your Own App ID Here"; 6 const APP_key = "Use Your Own App Key Here"; 7 // console.log(container) 8 searchForm.addEventListener("submit", (e) => { 9 e.preventDefault(); 10 searchQuery = e.target.querySelector("input").value; 11 fetchAPI(); 12 }); 13 14 async function fetchAPI() { 15 const baseURL = `https://api.edamam.com/search?q=${searchQuery}&app_id=${APP_ID}&app_key=${APP_key}&from=0&to=20`; 16 const response = await fetch(baseURL);
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter