Programming in JavaScript

Slides:



Advertisements
Similar presentations
WEBNP Telecom Invoice Retrieval TEX-AN Customer User Guide.
Advertisements

CALCULATOR MANIPULATION. Due to the differences in calculators you will have to be able to use your own effectively.
The Web Warrior Guide to Web Design Technologies
CIS101 Introduction to Computing Week 08. Agenda Your questions JavaScript text Resume project HTML Project Six This week online Next class.
Course Orientation Assignments Tool. If the Assignments tool has been added to the course, use the Assignments link in the Course Menu to access upcoming.
CIS101 Introduction to Computing Week 11. Agenda Your questions Copy and Paste Assignment Practice Test JavaScript: Functions and Selection Lesson 06,
Student Presentations. Overview Introduction Prepping Zipping Uploading unZipping Viewing.
Chapter Accreditation Online System Usage Tutorial Department of Member Relations & Grants National Children’s Alliance.
Administrative Functions Certiport Offline Learning System 2.1 Administrative Functions © Certiport, Inc All Rights Reserved.
* Just the gist? * Lots of details? * Specific steps? * What language ?
Exponents Scientific Notation
Section 1.3 Prime numbers and fractions
Online Performance Appraisals. Online Performance Appraisal Online Performance Appraisal will help the employees to fill their appraisals online. There.
Submitting Book Chapters via Manuscript Central A Short Guide for Wiley-VCH Authors.
State of Kansas INF50 Excel Voucher Upload Statewide Management, Accounting and Reporting Tool The following Desk Aid instructs users on overall functionality.
Moodle (Course Management Systems). Assignments 1 Assignments are a refreshingly simple method for collecting student work. They are a simple and flexible.
Getting Started with:. Registering for Pearson MasteringNutrition is easy! Go to the home page to get started
NATE Training Provider Portal Guide to using the myNATE website Submitting Class Rosters.
State of Kansas INF50 Excel Voucher Upload Statewide Management, Accounting and Reporting Tool The following Desk Aid instructs users on overall functionality.
Nancy Severe-Barnett Program Coordinator, SCIS
← Select Exchange Once logged in. ↓ click Join Course Icon.
Go to your school’s web locker site school name.schoolweblockers.com) Your user name is the first letter of your first name, the first 4.
RiskMeter Batch Training. Batch Tool The Riskmeter batch tool allows users to submit multiple locations all at once. The Riskmeter batch tool allows users.
Diagnostic Pathfinder for Instructors. Diagnostic Pathfinder Local File vs. Database Normal operations Expert operations Admin operations.
ISU Basic SAS commands Laboratory No. 1 Computer Techniques for Biological Research Animal Science 500 Ken Stalder, Professor Department of Animal Science.
* Just the gist? * Lots of details? * Specific steps? * What language ?
T U T O R I A L  2009 Pearson Education, Inc. All rights reserved Class Average Application Introducing the Do...Loop While and Do...Loop Until.
Get Access to your Online Course Tools Course: Instructor: Office: Hours:
Darek Sady - Respondus - 3/19/2003 Using Respondus Beginner to Basic By: Darek Sady.
How to Setup and Score a Tournament May Let’s Get Organized The setup and organization outlined in this clinic are suggested steps however can be.
INSTRUCTOR: JOAN RABIDEAU Unit 5 ~ CS119 is the fastest way to reach me to get assistance and support! AIM – joanlrabideau.
1-Feb-16 Blackboard. Web sites All substantive information about this course is on the course website,
1 Project 2: Using Variables and Expressions. 222 Project 2 Overview For this project you will work with three programs Circle Paint Ideal_Weight What.
1 Once you log in – How to create your profile Company Name TID Contact Name - Enter your name using the format First Name space Last Name User ID – will.
PHP Form Processing * referenced from
CWA 3105 Presents At&t Connect for Windows pc This will be a quick set up guide for our new virtual meeting program We are the ELITE to have this trial.
1 Project 8: Tic Tac Toe. 2 Assignment Write an HTML and JavaScript page that pemits users to play Tic Tac Toe. Both players use a single browser. Alternating.
Journal of Mountain Science (JMS)
Development Environment
Objectives Create a folder in Google Drive.
Student SOLE Page – Living Page
How to Submit a External Tool Assignment
LMEvents SharePoint Portal How-to Guide
Online Student Orientation
ERO Portal Overview & CFR Tool Training
Click on the assignment you wish to complete
Mail Merge Instructions (Yanick’s Version)
Central Document Library Quick Reference User Guide View User Guide
I-Supplier Training Guide
European Computer Driving Licence
MODULE 7 Microsoft Access 2010
GDSS – Digital Signature
Lecture Notes 8/24/04 (part 2)
Programming in JavaScript
COURSE INSTRUCTIONS Minimum Requirements Microsoft Windows 2000
Programming in JavaScript
Programming in JavaScript
Programming in JavaScript
Programming in JavaScript
Blackboard Tutorial (Student)
Chapter 3: Selection Structures: Making Decisions
Online Testing System Assessment Viewing Application (AVA)
Programming in JavaScript
Project and Assignment Submission
Chapter 3: Selection Structures: Making Decisions
Basic Lessons 5 & 6 Mr. Kalmes.
This presentation document has been prepared by Vault Intelligence Limited (“Vault") and is intended for off line demonstration, presentation and educational.
This is an introduction to JavaScript using the examples found at the CIS17 website. In previous examples I specified language = Javascript, instead of.
Presentation transcript:

Programming in JavaScript University of Management and Technology 1901 Fort Myer Drive, Suite 700 Arlington, VA 22009 Voice: (703) 516-0035 Fax: (703) 516-0985 Website: http://www.umtweb.edu

Learning Objectives Upon completing this module, the student should be able to: Understand and Use Event Handlers Understand and Use Objects Understand and Use Forms Answer all questions at the end of Chapters 7, 8, and 14 of the book.

Input Now that we know about variables and functions and how to control what we want to output, It’s time to learn how to get input from a user. Browsers do that by presenting a form the users use to input data and to click a button or link to tell the browser they are done. Chapter 14 of the book tells you how to do that. Before you’ll understand chapter 14, you definitely must understand chapters one through eight. You should at least read through chapters nine through 13, but they are not specifically required for this course. So, make sure you fully understand chapter 14 before going to the next slide!

Your Final Graded Assignment Your assignment must be uploaded to your instructor via your Student Portal. Emailed assignments are NOT accepted for this course! You can only upload one file per assignment. Since this assignment requires multiple files, you must create a .zip file. If you are using a recent version of Microsoft windows, you can create the ZIP file (compressed folder) by creating a new folder anywhere in your computer’s file system and putting the files in that folder. Then right-click on the folder and select “Send to” and then “compressed (zipped) folder”. Alternatively, you can use a program such as WinZIP (winzip.com). It doesn’t matter what you name the file you upload except that the file extension must be .zip.

Your Final Graded Assignment, Cont. Once uploaded you cannot upload the assignment again unless reset by your instructor – please take the time to do it right the first time! Each file in the assignment must have a comment at the top, using the correct commenting technique for the file type, like this: Your Name Your Student ID CST140 Assignment 4

Your Final Graded Assignment, Cont. Create a very simple four function integer calculator with buttons for Add, Subtract, Multiply, and Divide, and with two text-type input fields. When the user enters two numbers and clicks one of the buttons, the answer is displayed where shown. Your program must use an alert to tell the user about any errors. The possible errors include: One or both input fields are blank One or both input fields < -9999 or greater than 9999 Divide by zero Illegal character in either input field. Only 0, 1 ,2 ,3 ,4 ,5 ,6 ,7 ,8 ,9, and – are allowed. You must include instructions to the instructor on how to install the assignment. Do this in a separate file named ReadMe.txt. Even though there are none in the example, you must include instructions to the user.