job-filter

Job Filter

You’re an engineer here at AngelList. We’ve decided to iterate on the job search experience for candidates. You’ve been tasked with prototyping a simple job filter for candidates to look for jobs by role (e.g. engineer, designer).

Here are the mocks you’ve been given:

You’ll be using vanilla JavaScript (no frameworks), HTML, and CSS to build this job filter.

Your code should:

You’ll write everything in the Coderpad. You’ll see that there’s a designated section for CSS, one for HTML, and one for JavaScript.

Feel free to:

How to make API requests

We’ve provided a api function for you to use; it will be available in scope of your JavaScript. api takes an HTTP method and path to request, and an optional data argument (if you are making a POST). The function will return a promise that may have data. It can also potentially reject with an error.

api(method: string, path: string, data?: any): Promise<any>

Design specs


Hints

Select styles

Click to expand A stylesheet is provided to help with styling the `