1. have at least 5 separate "pages" to your dog daily routine going from home to the park next to your home a progression from beginning to end 2. Includes at least 2 different means of user...

1 answer below »




1. have at least 5 separate "pages" to your dog daily routine going from home to the park next to your home a progression from beginning to end



2. Includes at least 2 different means of user interaction that conceptually match the content of the narrative



3. Uses creative visual elements that are appropriate to the content of the story












This project will be uploaded to your GitHub site and submitted as two links, one to the live site, and one to the source repository. Additionally, please include a written statement about your goals with this project as well as a video of you or one of your groupmates interacting with the project.





Answered 6 days AfterApr 12, 2021

Answer To: 1. have at least 5 separate "pages" to your dog daily routine going from home to the park next to...

Rushendra answered on Apr 19 2021
134 Votes
Dog Planner/index.html
Dog Planner
        


DateThis
field is required.



Time


Description





        
        Date        Time        Dog Plan        
Dog Planner/README.md
Dog Planner/script.js
var selectedRow = null
function onFormSubmit() {
if (validate()) {
var formData = readFormData();
if (selectedRow == null)
insertNewRecord(formData);
else
updateRecord(formData);
resetForm();
}
}
function readFormData() {
var formData = {};
formData["date"] = document.getElementById("date").value;
formData["time"] = document.getElementById("time").value;
formData["desc"] = document.getElementById("desc").value;

return formData;
}
function insertNewRecord(data) {
var table = document.getElementById("dogPlan").getElementsByTagName('tbody')[0];
...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here