IT3215 unit 1 assignment latest 2018 june

Question # 00591648
Course Code : IT3215
Subject: Computer Science
Due on: 08/18/2018
Posted On: 08/18/2018 05:24 AM
Tutorials: 1
Rating:
4.9/5
Question Dot Image

Unit 01 Assignment 1

Using Variables in a Form

Expectations

The JavaScript that you use in the course assignments should:

Render and function properly in at least two of the following browsers: Chrome, Firefox, Edge, and Safari.

Be verified to be error free, well documented with comments, and appropriately constructed.

Overview

In this assignment, use the Web page called "invitation.html" found in the Required Resources (in the zip file called IT-FP3215.zip) to add functionality to an interactive form that generates an invitation to volunteers for an event. The file will have the following invitation message placeholder and a form below it. You will add JavaScript functionality to the form that will allow a user to dynamically fill out the invitation.

Hello __recipientName_____!

You have been invited to volunteer for an event held on July 1st. Please respond to this email to sign up as a volunteer.

Thanks!

___hostName___

Hints:

The placeholders (for example the “recipientName”) will need to be set up as elements with an assigned id attribute. Prompt the user to enter in the recipient’s name, and host name (Your name). Using JavaScript, replace those elements dynamically with what the user has entered in the form.

Use the form’s input fields (once submitted) to store the values to JavaScript variables. Then manipulate the DOM to replace the element content dynamically.

To get you started, in your .js file, you need to first declare the variable names such as:

var myRecipientName;

Then, you would need to set the variable to the input field’s value:

myRecipientName = document.getElementById(“recipientNameInput”).value;

Next, you would then need to set the innerHTML of the span element of the corresponding name like:

document.getElementById(“recipientNamePlaceholder”).innerHTML = myRecipientName;

Note on your submit button, a JavaScript event handler has been defined on the submit of the form. Notice that it has a return false to prevent the form from actually submitting.

Hint: See what happens when you remove the “return false” from the JavaScript code.

Tip: Variable names cannot include any special characters or spaces. They cannot start with a number. They also cannot be any of JavaScript’s reserved words. Remember as well that JavaScript is case sensitive.

Preparation

Download and unzip the IT-FP3215.zip file found in the Required Resources. It contains the initial framework for the site. All of the HTML files are located in the root directory. Images are placed in the images subdirectory; CSS files are placed under the css subdirectory. Your JavaScript external files should be placed under the “js” subdirector. When you submit your work, be sure to zip up the entire folder, including all of the ancillary files such as the images, CSS, and JavaScript code.

Note: This course requires you to use a text editor to complete your work. There are many free open source options on the Internet from which you may choose. See the Suggested Resources for links to free, open source text editors.

Directions

Read the Overview. Use the invitation.html file in the Resources as a template for completing this assessment.

Write JavaScript that enables the invitation to be dynamically completed using the form. Make sure to do each of the following:

Declare variables to store the input field data.

Store the input field data into the variables on form submit.

Manipulate the DOM to replace placeholder data with the variables.

Write developer comments to describe the variables being declared and explain the functions and logical blocks of JavaScript code.

Once completed, view your pages in each of your two selected Web browsers to see if the content renders appropriately and consistently within each. Next, verify that your code is error-free using the appropriate browser-specific development tool found in the Resources. Take a screen capture of each of your validation results and save it for submission.

Submission Requirements

Upload all your website files to a hosting service of your choice. Two free sites to consider are Freehosting.com or 000webhost.com. See the Suggested Resources for links.

Submit your work in the courseroom using a single Zip file containing the following:

Your entire Web site (including the updated “invitation.html” file).

A Word document with:

The url to your Web site so faculty can view your site on a live host.

A screen capture of each of your two validations that you completed using the developer tools found in the Resources.

Resources

Using Variables in a Form Scoring Guide.

Safari Web Inspector Guide.

Microsoft Edge Dev Tools.

000webhost.com.

Freehosting.com.

Chrome DevTools.

Brackets..

IT3215 Web Site Zip Files.

Dot Image
expertguy Posted By :
Questions: 34513 Tutorials: 33884
Tutorials for this Question

IT3215 unit 1 assignment latest 2018 june

Tutorial # 00589605
Posted On: 08/18/2018 05:27 AM
Feedback Score: 100% (by 2 users)
Purchased By: 4
expertguy
Posted By:
Questions:
34513
Tutorials:
33884
Report this Tutorial as Inappropriate
Tutorial Preview
The solution of IT3215 unit 1 assignment latest 2018 june...
Attachments
Unit_01_Assignment_1.docx (493.93 KB)
Recent Feedback
Rated By Feedback Comments Rated On
100% unique and error-free tutorials 12/04/2019
Convincing presentation of work 11/08/2019

Great! We have found the solution of this question!

Related Questions
Capella IT3215 Unit 2 Assignment Latest 2019 March
IT3215 Introduction to JavaScript Unit 02 Assignment Using Arrays and Loops Overview For this assignment, you will use the volunteer.html file to create a more effective process for managing the …
Capella IT3215 Unit 5 Discussion (dq1+dq2) Latest 2019 December
IT3215 Introduction to JavaScript Unit 5 Discussion DQ1 Cookies: Storing and Passing Information On their own, HTML and CSS are unable to store user information, so once the Web browser is c …
Capella IT3215 Unit 3 Discussion (dq1+dq2) Latest 2019 December
IT3215 Introduction to JavaScript Unit 3 Discussion DQ Events, Dynamic Images, and Modularization The ability to animate graphics with JavaScript has resulted in increased interactivity of W …
Capella IT3215 Unit 2 Discussion (dq1+dq2) Latest 2019 December
IT3215 Introduction to JavaScript Unit 2 Discussion         DQ1 Arrays, Loops, and the DOM You have learned about working with the DOM with CSS, but you can …
Capella IT3215 Unit 3 Discussion (DQ1 ONLY) Latest 2019 March
IT3215 Introduction to JavaScript Unit 03 Discussion DQ1 Events, Dynamic Images, and Modularization The ability to animate graphics with JavaScript has resulted in increased interactivity of Web s …
Capella IT3215 Unit 2 Discussion (DQ1 ONLY) Latest 2019 March
IT3215 Introduction to JavaScript Unit 02 Discussion DQ1 Arrays, Loops, and the DOM You have learned about working with the DOM with CSS, but you can also work with the DOM using JavaScript. You w …
Capella IT3215 Unit 1 Discussion (dq1+dq2) Latest 2019 December
IT3215 Introduction to JavaScript Unit 1 Discussion DQ1 Getting Started With JavaScript JavaScript has been one of the most popular scripting languages for dynamic interactivity. It is a com …
Capella IT3215 Unit 3 Assignment Latest 2019 March
IT3215 Introduction to JavaScript Unit 03 Assignment Dynamic Images, E vents, and the DOM Overview Images, both static and dynamic, appear on most Web sites. There are many different features an …
Capella IT3215 Unit 4 Discussion (DQ1 ONLY) Latest 2019 March
IT3215 Introduction to JavaScript Unit 04 Discussion DQ1 Validating Form Input Data Working with and processing bad data generally means that a lot of work will have to be done to clean up the dat …
Capella IT3215 Unit 4 Discussion (dq1+dq2) Latest 2019 December
IT3215 Introduction to JavaScript Unit 4 Discussion DQ1 Validating Form Input Data Working with and processing bad data generally means that a lot of work will have to be done to clean up th …
Recent Questions
Psychology - Social psychology and intuition
Psychology Question In order to assess competency following this course, the final assessment will require students to demonstrate their knowledge on the concepts covered by developing a portfolio …
MGMT620 Week 1 Quiz Latest 2024
MGMT620 week 1 Quiz: Introduction to Project Evaluation/Assessment Question 1 Which of the following terms is often used to denote a project that a powerful, high-ranking official is advocating? …
SOP374 Psychology Of Women - Historical and Social Contexts
SOP 374 PSYCHOLOGY OF WOMEN Question on Historical and Social Contexts: How have significant historical events influenced the evolution of women's roles in American society? It discusses spe …
Developmental Psychology - How does the information covered
Developmental Psychology Lecture video:  TEDex video:   This module's lecture video, and the following TedTalk video by Maria Alejandro entitled "Growing Old Is A Blessing& …
PSYC1300 Unit 3 Activity - Professor Rogers’ Trial
Psyc 1300 Unit 3 Activity: Your Name Goes Here For each of the following sections, answer the questions with your textbook. Formatting Requirements (5 points): Your activity should be approximat …
Psychology - Many programs are now being offered
Psychology Question Many programs are now being offered to help people become more effective parents and raise more competent children. These programs are available in many formats (print, video, f …
Problematic PR - Case 1,2: PR issues surrounding
University of North Texas please write at least Problematic PR From your reading, you know that public relations campaigns are meant to “create a good will” toward a product, person, …
PSY310 Behavior plan - Identify the target behavior of interest
Behavior plan PSY310 Overview: Reflect back on what you have learned in this class about the learning theories of classical conditioning and operant conditioning. For this assignment, you wil …
Identify 10 facts you have learned in this Biology of Aging
Log in to the digital textbook at https://brytewave.redshelf.com/accounts/login/ Each student is required to submit a presentation, using Microsoft PowerPoint.  The requirements for this …
What was the discriminative stimulus for a child's aggressive
In the Bobo doll experiment 1. What was the discriminative stimulus for a child's aggressive behavior toward Bobo. 2. Was there a reinforcer for a child's aggressive behavior toward Bobo …