Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
PROG1800 - Winter 2018 Task 1 JavaScript Background: The purpose of this is to provide you hands-on experience working with HTML and JavaScript....
PROG1800 - Winter 2018
Task 1
JavaScript
Background:
The purpose of this is to provide you hands-on experience working with HTML and JavaScript.
Tasks:
1. HTML Static Content - Buttons
Create a web page that contains 2 buttons.
2. JavaScript Event - Button 1
When the rst button is clicked, the user will be prompted to enter a given name. After entering some text, the user will be prompted to enter a family name. Create a username by concatenating the input and inserting a period between the two names.
3. JavaScript Event - Button 2
When the second button is clicked, the user will be prompted to enter a nickname.
4. HTML Dynamic Content - Ouput
Display the results of the application in a format similar to the following:
Your username is givenName.familyName
but we'll call you nickname
5. HTML Static Content - Instructions
Be sure to explain to the user what your web application is supposed to do. Include details on how to use the application.