Instructions

This project focuses on saving state in a browser. Specifically, we'll be looking at using HTML5's localStorage to store a user's name as entered via a form.

You should create a single HTML file named mp4.html. This page should include JavaScript that should be responsible for the following:

Note that in JavaScript, you can hide a DOM element by setting its display style to 'none', e.g.,

You can show it by setting display to an empty string.

Submission

Your file should be located on Joust in the directory ~/public_html/csc401/mp4/, in addition to being uploaded to Canvas. The rubric can be found here. The Canvas submission page is here.

(Back to top)