Question: BOOK SEARCH: Instructions: Add HTML input element with id searchInput inside an HTML container element Add HTML select element with id selectDisplayCount inside an HTML
BOOK SEARCH:
Instructions:
- Add HTML input element with id searchInput inside an HTML container element
- Add HTML select element with id selectDisplayCount inside an HTML container element
- Add HTML container element with id searchResults
By following the above instructions, achieve the given functionality.
- When a value is entered in the HTML input element with id searchInput and press on Enter key
- Get title, imageLink, author (HTTP response with key search_results) by making HTTP request using fetch with URL https://apis.ccbp.in/book-store?title=kalam&maxResults=30
- Set imageLink in the HTML img element and set author in the HTML paragraph element
- When a value is entered in the HTML input element with id searchInput and an option is selected in the drop down
- Make a HTTP GET request to fetch the books based on the title entered and maximum number of results
- If search results not equal to zero, then append the search results to the HTML container element with id searchResults
- If search results equal to zero, then display "No results found"
- Add loading status with Bootstrap component spinner while making an HTTP request
BOOK SEARCH:
Instructions:
- Add HTML input element with id searchInput inside an HTML container element
- Add HTML select element with id selectDisplayCount inside an HTML container element
- Add HTML container element with id searchResults
-
By following the above instructions, achieve the given functionality.
- When a value is entered in the HTML input element with id searchInput and press on Enter key
- Get title, imageLink, author (HTTP response with key search_results) by making HTTP request using fetch with URL https://apis.ccbp.in/book-store?title=kalam&maxResults=30
- Set imageLink in the HTML img element and set author in the HTML paragraph element
- When a value is entered in the HTML input element with id searchInput and an option is selected in the drop down
- Make a HTTP GET request to fetch the books based on the title entered and maximum number of results
- If search results not equal to zero, then append the search results to the HTML container element with id searchResults
- If search results equal to zero, then display "No results found"
- Add loading status with Bootstrap component spinner while making an HTTP request
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
