Movie Search

There's some code to get you started that wires up the event listener to the form and does the API call to OMDB for results. You'll need to work with the results that come back (an array). Loop through the results and put them on the page.

Each movie should have the following markup, which means you'll have to continue practicing DOM manipulation.

<li class="movie">
  <div class="movie-title">
    <a href="http://www.imdb.com/title/tt0106611" target="_blank">
      Cool Runnings
    </a>
  </div>
  <div class="movie-release-date">1993</div>
</li>