HTML/CSS/JS
I need some help
Please use the Zippopotamus API for this project. Users should to be able to look up a zip code in the US, then state and location name will be returned to the user on one line. The user should then be able to click on the state and location line to then reveal the locations longitude and latitude.
The requirements are as follows:
At least one web page that provides
a search field that a user can enter values to search for items in the API
a result listing of the search dumped into an HTML table or jQuery Datatable (or
equivalent). The result listing must include additional fields besides the search
parameter fields.
a button or link or some mechanism to click on each result and be presented
with a dialog/page/dynamic section of detailed information of the particular item
Your solution must incorporate Ajax for calling the API
Your solution must have event handlers for submitting the query (e.g, form submittal or button click)
Your solution must incorporate data validation for at least one of the query fields (data type, length, etc.)
Your solution must follow our best practices this semester (strict grading on these):
External JavaScript libraries (no embedded JavaScript in HTML)
Usage of functions
Clean code (usage of let/const for variable declarations, good naming, brief comments, etc.). I should be able to quickly discern the intent of functions and variables by their names.
Thanks