Skip to content

Latest commit

 

History

History

Q3

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Quest 3

Precondition

Complete:

  1. Quest 1
  2. Quest 2

Description

  1. Structure your project.
project
  \css
  \img
  \lib
  \js
  \...
  index.html
  ...
  1. Use JQuery to rewrite your Q1 and Q2 code.

Try to use JQuery to manipulate DOM elements and send HTTP requests.

  1. New feature: Add a search box

Instead of fixing the search keyword to javascript, we want to let user input search keyword.

When user click search button, it should search GitHub with input keyword and show the first 10 results.

  1. User is able to search multiple times without refreshing the page.

It means a user searched javascript first, and the page shows the first 10 results. Then user input jquery and click search button, it should show the first 10 results for jquery.

Search

  1. Good UI for both PC and mobile.