Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Workshop 7 - Using jQuery and AJAX to make a chat application.

Resources

In order to finish this project feel free to use jQuery's ajax functions. You can also greatly simplify your code by using jQuery's selectors to update the html on the screen.

jQuery AJAX

jQuery GET

jQuery GETJSON

Exercise - Live Chat Stories

Login

As a user, I want to enter a username.

Acceptance

  • The system should allow a user to enter a username, then store that username in memory.
  • If using a simple text-input, hide the input when the user is "logged-in".

Logout

As a user, I want to exit the application.

Acceptance

  • The system should allow the user to press a button, logout, and be presented with the username entry.

Create a chat room

As a user, I want to create a room to chat.

Acceptance

See chat rooms

As a user I want to see a list of chat rooms available to join.

Acceptance

Post to chat room

As a user, I can post to a chat room.

Acceptance

Search for a chat room

As a user I want to search for a chat room.

Acceptance

See posts in a chatroom

As a user I want to see the posts in a chat room.

Acceptance