SlideShare a Scribd company logo
1 of 33
Understanding JavaScript and
Coding Essentials
Lesson 8
Exam Objective Matrix
Skills/Concepts

MTA Exam Objectives

Managing and Maintaining
JavaScript
Updating the UI by Using
JavaScript

Manage and maintain JavaScript. (4.1)
Update the UI by using JavaScript. (4.2)
Introduction to JavaScript
• JavaScript is a programming language
that provides action in applications.
• Interactivity enables an end user to take
an action in an application, usually by
clicking a button or pressing a key.
• A dynamic application adjusts and
responds to such actions by end users.
• JavaScript also expands the opportunities
to animate content.
Alert Boxes
• Alert boxes are commonly used to test the
operation of JavaScript programs.
• Generally not used in production code.
• An alert box can help you ensure
information is displayed to the user.
• A user has to click OK to close an alert
box.
JavaScript Statements
• An ordinary JavaScript program is a
sequence of statements.
• Statements are separated by semi-colons.
alert('This is the first alert');
alert('This is the second alert');
Create a Simple JavaScript Application
Create a Simple JavaScript Application
Enabling JavaScript in a Web Browser
• Enabling JavaScript
in Internet
Explorer
Functions
• A function is a segment of a program
defined and performed in isolation from
other parts.
• JavaScript programmers sometimes
identify functions that return no value as
subroutines.
Functions (Continued)
• The expression of a function—the
―function example1() {. . .}‖ part—doesn’t
perform any of the code within the
function.
• What you see in the source code is only
the definition of a function.
• When the function is invoked, executed, or
launched, something useful happen.
Function Example
Function Example
Links between HTML and JavaScript
• Can include JavaScript code in <script>
tags in <head> section of HTML file for
small to medium-sized projects
• For large amounts of code, reference a
separate JavaScript file within the
<script> tag:
<script type = "text/javascript" src =
path/filename.js"></script>
Variables
• A JavaScript variable stands for a piece of
data.
• You use the var syntax to define a new
variable in JavaScript:
var firstname;
Identifiers
• JavaScript identifiers are the names of
variables and functions.
• Identifiers cannot be the same as
keywords already used in JavaScript.
• For example, ―if ‖ has a special meaning in
JavaScript statements and is not available
as a variable name.
JavaScript Libraries
• A library is collection of resources, like
pre-written function code and subroutines,
that developers use to create programs.
• A JavaScript library is pre-written
JavaScript code.
• jQuery is the leading JavaScript library.
• Other popular libraries include Dojo,
MooTools, and YUI.
JavaScript Libraries (Continued)
• When using a third-party library, include
an element such as the following to
reference the library:
<script type = "text/javascript" src =
"web or local address of the JavaScript
library source"></script>
getElementById() Method
• One important way to access display
elements is with the getElementById()
method.
• This method returns a reference to the first
object with the specified id or NAME
attribute.
getElementById() Example
Methods
• Methods are JavaScript functions that belong to
objects.
• Methods differ from functions in that methods are
always associated and used with a particular object.
• isNaN() is an example of a JavaScript function.

– Tests for ―not a number‖; if value = 0 (false),
value is a number
• document.getElementById() is an example of
a JavaScript method; you can effectively only use
getElementById with the special document
object.
Events
• Events are actions that trigger other
actions to occur.
• An event handler is an optional script or
executable that handles input received in a
program. Handlers are JavaScript code
inside the <html> tags (rather than the
<script> tags) that execute other
JavaScript code in response to an event.
Events (Continued)
• A callback is a response to an event,
such as a script execution in response to a
mouse click.
onLoad Event Handler
• The onLoad event handler ―belongs‖ to
HTML items; it triggers when its owner is
complete.
• The onLoad for an <img> image occurs
when the image is fully rendered and
visible.
• The onLoad for a <table> fires once all the
cells in that table have been drawn.
onLoad Example
onLoad Example (Continued)
Flawed JavaScript Programs Are Erratic
• Flawed JavaScript programs are erratic—
they give different results at different times.
• Reasons:
– If the program depends on the existence of a
particular screen element but doesn’t assure
that the element exists
– Launching the program at different times,
resulting in slightly different loading order

• Fix: Begin calculations only after onLoad has
fired.
Showing and Hiding Elements
• The HTML display attribute shows the
user pertinent information and hides the
information when no longer needed.
HTML display Attribute Example
HTML display Attribute Example (Cont.)
Updating the Content of Elements
• JavaScript uses the innerHTML property to
change the current content of HTML
elements (referred to as ―inner content‖) or
insert new content.
innerHTML Example
innerHTML Example (Continued)
Recap
• Introduction to JavaScript
– Alert boxes
– JavaScript statements

•
•
•
•
•
•
•
•
•
•

Creating a simple JavaScript application
Functions
Links between HTML and JavaScript
Variables
Identifiers
JavaScript libraries
Methods
Events
Showing and hiding elements
Updating the content of elements

More Related Content

What's hot

Java script final presentation
Java script final presentationJava script final presentation
Java script final presentationAdhoura Academy
 
EasyTest Test Automation Tool Introduction
EasyTest Test Automation Tool IntroductionEasyTest Test Automation Tool Introduction
EasyTest Test Automation Tool IntroductionZhu Zhong
 
Introduction to TypeScript by Winston Levi
Introduction to TypeScript by Winston LeviIntroduction to TypeScript by Winston Levi
Introduction to TypeScript by Winston LeviWinston Levi
 
Selenium Design Patterns
Selenium Design PatternsSelenium Design Patterns
Selenium Design PatternsLiraz Shay
 
Oracle 10g Forms Lesson 13
Oracle 10g Forms Lesson 13Oracle 10g Forms Lesson 13
Oracle 10g Forms Lesson 13KAMA3
 
Crafting high quality code
Crafting high quality code Crafting high quality code
Crafting high quality code Allan Mangune
 
QTP Automation Testing Tutorial 6
QTP Automation Testing Tutorial 6QTP Automation Testing Tutorial 6
QTP Automation Testing Tutorial 6Akash Tyagi
 
Devday2016 real unittestingwithmockframework-phatvu
Devday2016 real unittestingwithmockframework-phatvuDevday2016 real unittestingwithmockframework-phatvu
Devday2016 real unittestingwithmockframework-phatvuPhat VU
 
QTP Power Point Presentation
QTP Power Point PresentationQTP Power Point Presentation
QTP Power Point PresentationSVRTechnologies
 
Architectural Patterns - Interactive and Event Handling Patterns
Architectural Patterns  - Interactive and Event Handling PatternsArchitectural Patterns  - Interactive and Event Handling Patterns
Architectural Patterns - Interactive and Event Handling Patternsassinha
 
JavaScript Core fundamentals - Learn JavaScript Here
JavaScript Core fundamentals - Learn JavaScript HereJavaScript Core fundamentals - Learn JavaScript Here
JavaScript Core fundamentals - Learn JavaScript HereLaurence Svekis ✔
 
Introduction to java script
Introduction to java scriptIntroduction to java script
Introduction to java scriptDivyaKS12
 
Java 101 intro to programming with java
Java 101  intro to programming with javaJava 101  intro to programming with java
Java 101 intro to programming with javaHawkman Academy
 
Built to last javascript for enterprise
Built to last   javascript for enterpriseBuilt to last   javascript for enterprise
Built to last javascript for enterpriseMarjan Nikolovski
 

What's hot (20)

Java script final presentation
Java script final presentationJava script final presentation
Java script final presentation
 
EasyTest Test Automation Tool Introduction
EasyTest Test Automation Tool IntroductionEasyTest Test Automation Tool Introduction
EasyTest Test Automation Tool Introduction
 
Introduction to TypeScript by Winston Levi
Introduction to TypeScript by Winston LeviIntroduction to TypeScript by Winston Levi
Introduction to TypeScript by Winston Levi
 
Using Specflow for BDD
Using Specflow for BDDUsing Specflow for BDD
Using Specflow for BDD
 
Selenium Design Patterns
Selenium Design PatternsSelenium Design Patterns
Selenium Design Patterns
 
Oracle 10g Forms Lesson 13
Oracle 10g Forms Lesson 13Oracle 10g Forms Lesson 13
Oracle 10g Forms Lesson 13
 
Extjs
ExtjsExtjs
Extjs
 
Java Script
Java ScriptJava Script
Java Script
 
Crafting high quality code
Crafting high quality code Crafting high quality code
Crafting high quality code
 
QTP Automation Testing Tutorial 6
QTP Automation Testing Tutorial 6QTP Automation Testing Tutorial 6
QTP Automation Testing Tutorial 6
 
Devday2016 real unittestingwithmockframework-phatvu
Devday2016 real unittestingwithmockframework-phatvuDevday2016 real unittestingwithmockframework-phatvu
Devday2016 real unittestingwithmockframework-phatvu
 
QTP Power Point Presentation
QTP Power Point PresentationQTP Power Point Presentation
QTP Power Point Presentation
 
Architectural Patterns - Interactive and Event Handling Patterns
Architectural Patterns  - Interactive and Event Handling PatternsArchitectural Patterns  - Interactive and Event Handling Patterns
Architectural Patterns - Interactive and Event Handling Patterns
 
JavaScript Core fundamentals - Learn JavaScript Here
JavaScript Core fundamentals - Learn JavaScript HereJavaScript Core fundamentals - Learn JavaScript Here
JavaScript Core fundamentals - Learn JavaScript Here
 
Getting started with typescript
Getting started with typescriptGetting started with typescript
Getting started with typescript
 
Modern Java Development
Modern Java DevelopmentModern Java Development
Modern Java Development
 
Introduction to java script
Introduction to java scriptIntroduction to java script
Introduction to java script
 
Java 101 intro to programming with java
Java 101  intro to programming with javaJava 101  intro to programming with java
Java 101 intro to programming with java
 
Built to last javascript for enterprise
Built to last   javascript for enterpriseBuilt to last   javascript for enterprise
Built to last javascript for enterprise
 
L06 Using Design Patterns
L06 Using Design PatternsL06 Using Design Patterns
L06 Using Design Patterns
 

Viewers also liked

Baikpulih dan penyenggaraan t6
Baikpulih dan penyenggaraan t6Baikpulih dan penyenggaraan t6
Baikpulih dan penyenggaraan t6Dinamani Yeoges
 
HidashHi Brochure
HidashHi BrochureHidashHi Brochure
HidashHi BrochureHidashHi
 
Distribuição de materia nas plantas
Distribuição de materia nas plantasDistribuição de materia nas plantas
Distribuição de materia nas plantasRita Pereira
 
Presentación final la fotografía en la escuela
Presentación final   la fotografía en la escuelaPresentación final   la fotografía en la escuela
Presentación final la fotografía en la escuelaelenasangar
 
Study: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving CarsStudy: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving CarsLinkedIn
 

Viewers also liked (7)

Baikpulih dan penyenggaraan t6
Baikpulih dan penyenggaraan t6Baikpulih dan penyenggaraan t6
Baikpulih dan penyenggaraan t6
 
HidashHi Brochure
HidashHi BrochureHidashHi Brochure
HidashHi Brochure
 
Biodiversidade
Biodiversidade Biodiversidade
Biodiversidade
 
Distribuição de materia nas plantas
Distribuição de materia nas plantasDistribuição de materia nas plantas
Distribuição de materia nas plantas
 
Presentación final la fotografía en la escuela
Presentación final   la fotografía en la escuelaPresentación final   la fotografía en la escuela
Presentación final la fotografía en la escuela
 
Resume
ResumeResume
Resume
 
Study: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving CarsStudy: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving Cars
 

Similar to MTA understanding java script and coding essentials

Hsc IT Chap 3. Advanced javascript-1.pdf
Hsc IT Chap 3. Advanced javascript-1.pdfHsc IT Chap 3. Advanced javascript-1.pdf
Hsc IT Chap 3. Advanced javascript-1.pdfAAFREEN SHAIKH
 
javascript 1
javascript 1javascript 1
javascript 1osman do
 
Iwt note(module 2)
Iwt note(module 2)Iwt note(module 2)
Iwt note(module 2)SANTOSH RATH
 
JavaScript: Implementations And Applications
JavaScript: Implementations And ApplicationsJavaScript: Implementations And Applications
JavaScript: Implementations And ApplicationsPragya Pai
 
CS101- Introduction to Computing- Lecture 32
CS101- Introduction to Computing- Lecture 32CS101- Introduction to Computing- Lecture 32
CS101- Introduction to Computing- Lecture 32Bilal Ahmed
 
javascript Event Handling and introduction to event.ppt
javascript Event Handling and introduction to event.pptjavascript Event Handling and introduction to event.ppt
javascript Event Handling and introduction to event.pptLalith86
 
Std 12 Computer Chapter 2 Cascading Style Sheet and Javascript (Part-2)
Std 12 Computer Chapter 2 Cascading Style Sheet and Javascript (Part-2)Std 12 Computer Chapter 2 Cascading Style Sheet and Javascript (Part-2)
Std 12 Computer Chapter 2 Cascading Style Sheet and Javascript (Part-2)Nuzhat Memon
 
Final Java-script.pptx
Final Java-script.pptxFinal Java-script.pptx
Final Java-script.pptxAlkanthiSomesh
 
javascriptPresentation.pdf
javascriptPresentation.pdfjavascriptPresentation.pdf
javascriptPresentation.pdfwildcat9335
 
Session vii(java scriptbasics)
Session vii(java scriptbasics)Session vii(java scriptbasics)
Session vii(java scriptbasics)Shrijan Tiwari
 
Javascript
JavascriptJavascript
JavascriptMozxai
 
Basics java scripts
Basics java scriptsBasics java scripts
Basics java scriptsch samaram
 

Similar to MTA understanding java script and coding essentials (20)

Welcome to React.pptx
Welcome to React.pptxWelcome to React.pptx
Welcome to React.pptx
 
Hsc IT Chap 3. Advanced javascript-1.pdf
Hsc IT Chap 3. Advanced javascript-1.pdfHsc IT Chap 3. Advanced javascript-1.pdf
Hsc IT Chap 3. Advanced javascript-1.pdf
 
Java script
Java scriptJava script
Java script
 
javascript 1
javascript 1javascript 1
javascript 1
 
Java script
Java scriptJava script
Java script
 
Iwt note(module 2)
Iwt note(module 2)Iwt note(module 2)
Iwt note(module 2)
 
IP Unit 2.pptx
IP Unit 2.pptxIP Unit 2.pptx
IP Unit 2.pptx
 
Event Programming JavaScript
Event Programming JavaScriptEvent Programming JavaScript
Event Programming JavaScript
 
JavaScript: Implementations And Applications
JavaScript: Implementations And ApplicationsJavaScript: Implementations And Applications
JavaScript: Implementations And Applications
 
CS101- Introduction to Computing- Lecture 32
CS101- Introduction to Computing- Lecture 32CS101- Introduction to Computing- Lecture 32
CS101- Introduction to Computing- Lecture 32
 
WTA-MODULE-4.pptx
WTA-MODULE-4.pptxWTA-MODULE-4.pptx
WTA-MODULE-4.pptx
 
javascript Event Handling and introduction to event.ppt
javascript Event Handling and introduction to event.pptjavascript Event Handling and introduction to event.ppt
javascript Event Handling and introduction to event.ppt
 
Std 12 Computer Chapter 2 Cascading Style Sheet and Javascript (Part-2)
Std 12 Computer Chapter 2 Cascading Style Sheet and Javascript (Part-2)Std 12 Computer Chapter 2 Cascading Style Sheet and Javascript (Part-2)
Std 12 Computer Chapter 2 Cascading Style Sheet and Javascript (Part-2)
 
Final Java-script.pptx
Final Java-script.pptxFinal Java-script.pptx
Final Java-script.pptx
 
Lecture 5 javascript
Lecture 5 javascriptLecture 5 javascript
Lecture 5 javascript
 
javascriptPresentation.pdf
javascriptPresentation.pdfjavascriptPresentation.pdf
javascriptPresentation.pdf
 
Session vii(java scriptbasics)
Session vii(java scriptbasics)Session vii(java scriptbasics)
Session vii(java scriptbasics)
 
Web Technology Part 2
Web Technology Part 2Web Technology Part 2
Web Technology Part 2
 
Javascript
JavascriptJavascript
Javascript
 
Basics java scripts
Basics java scriptsBasics java scripts
Basics java scripts
 

Recently uploaded

Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management SystemChristalin Nelson
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptxiammrhaywood
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 

Recently uploaded (20)

Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 

MTA understanding java script and coding essentials

  • 2. Exam Objective Matrix Skills/Concepts MTA Exam Objectives Managing and Maintaining JavaScript Updating the UI by Using JavaScript Manage and maintain JavaScript. (4.1) Update the UI by using JavaScript. (4.2)
  • 3. Introduction to JavaScript • JavaScript is a programming language that provides action in applications. • Interactivity enables an end user to take an action in an application, usually by clicking a button or pressing a key. • A dynamic application adjusts and responds to such actions by end users. • JavaScript also expands the opportunities to animate content.
  • 4. Alert Boxes • Alert boxes are commonly used to test the operation of JavaScript programs. • Generally not used in production code. • An alert box can help you ensure information is displayed to the user. • A user has to click OK to close an alert box.
  • 5. JavaScript Statements • An ordinary JavaScript program is a sequence of statements. • Statements are separated by semi-colons. alert('This is the first alert'); alert('This is the second alert');
  • 6. Create a Simple JavaScript Application
  • 7. Create a Simple JavaScript Application
  • 8. Enabling JavaScript in a Web Browser • Enabling JavaScript in Internet Explorer
  • 9. Functions • A function is a segment of a program defined and performed in isolation from other parts. • JavaScript programmers sometimes identify functions that return no value as subroutines.
  • 10. Functions (Continued) • The expression of a function—the ―function example1() {. . .}‖ part—doesn’t perform any of the code within the function. • What you see in the source code is only the definition of a function. • When the function is invoked, executed, or launched, something useful happen.
  • 13. Links between HTML and JavaScript • Can include JavaScript code in <script> tags in <head> section of HTML file for small to medium-sized projects • For large amounts of code, reference a separate JavaScript file within the <script> tag: <script type = "text/javascript" src = path/filename.js"></script>
  • 14. Variables • A JavaScript variable stands for a piece of data. • You use the var syntax to define a new variable in JavaScript: var firstname;
  • 15. Identifiers • JavaScript identifiers are the names of variables and functions. • Identifiers cannot be the same as keywords already used in JavaScript. • For example, ―if ‖ has a special meaning in JavaScript statements and is not available as a variable name.
  • 16. JavaScript Libraries • A library is collection of resources, like pre-written function code and subroutines, that developers use to create programs. • A JavaScript library is pre-written JavaScript code. • jQuery is the leading JavaScript library. • Other popular libraries include Dojo, MooTools, and YUI.
  • 17. JavaScript Libraries (Continued) • When using a third-party library, include an element such as the following to reference the library: <script type = "text/javascript" src = "web or local address of the JavaScript library source"></script>
  • 18. getElementById() Method • One important way to access display elements is with the getElementById() method. • This method returns a reference to the first object with the specified id or NAME attribute.
  • 20. Methods • Methods are JavaScript functions that belong to objects. • Methods differ from functions in that methods are always associated and used with a particular object. • isNaN() is an example of a JavaScript function. – Tests for ―not a number‖; if value = 0 (false), value is a number • document.getElementById() is an example of a JavaScript method; you can effectively only use getElementById with the special document object.
  • 21. Events • Events are actions that trigger other actions to occur. • An event handler is an optional script or executable that handles input received in a program. Handlers are JavaScript code inside the <html> tags (rather than the <script> tags) that execute other JavaScript code in response to an event.
  • 22. Events (Continued) • A callback is a response to an event, such as a script execution in response to a mouse click.
  • 23. onLoad Event Handler • The onLoad event handler ―belongs‖ to HTML items; it triggers when its owner is complete. • The onLoad for an <img> image occurs when the image is fully rendered and visible. • The onLoad for a <table> fires once all the cells in that table have been drawn.
  • 26. Flawed JavaScript Programs Are Erratic • Flawed JavaScript programs are erratic— they give different results at different times. • Reasons: – If the program depends on the existence of a particular screen element but doesn’t assure that the element exists – Launching the program at different times, resulting in slightly different loading order • Fix: Begin calculations only after onLoad has fired.
  • 27. Showing and Hiding Elements • The HTML display attribute shows the user pertinent information and hides the information when no longer needed.
  • 29. HTML display Attribute Example (Cont.)
  • 30. Updating the Content of Elements • JavaScript uses the innerHTML property to change the current content of HTML elements (referred to as ―inner content‖) or insert new content.
  • 33. Recap • Introduction to JavaScript – Alert boxes – JavaScript statements • • • • • • • • • • Creating a simple JavaScript application Functions Links between HTML and JavaScript Variables Identifiers JavaScript libraries Methods Events Showing and hiding elements Updating the content of elements

Editor's Notes

  1. Tip: Add your own speaker notes here.
  2. Tip: Add your own speaker notes here.
  3. Tip: Add your own speaker notes here.
  4. Tip: Add your own speaker notes here.
  5. Tip: Add your own speaker notes here.
  6. Tip: Add your own speaker notes here.
  7. Tip: Add your own speaker notes here.
  8. Tip: Add your own speaker notes here.
  9. Tip: Add your own speaker notes here.
  10. Tip: Add your own speaker notes here.
  11. Tip: Add your own speaker notes here.
  12. Tip: Add your own speaker notes here.
  13. Tip: Add your own speaker notes here.
  14. Tip: Add your own speaker notes here.
  15. Tip: Add your own speaker notes here.
  16. Tip: Add your own speaker notes here.
  17. Tip: Add your own speaker notes here.
  18. Tip: Add your own speaker notes here.
  19. Tip: Add your own speaker notes here.
  20. Tip: Add your own speaker notes here.
  21. Tip: Add your own speaker notes here.
  22. Tip: Add your own speaker notes here.
  23. Tip: Add your own speaker notes here.
  24. Tip: Add your own speaker notes here.
  25. Tip: Add your own speaker notes here.
  26. Tip: Add your own speaker notes here.
  27. Tip: Add your own speaker notes here.
  28. Tip: Add your own speaker notes here.
  29. Tip: Add your own speaker notes here.
  30. Tip: Add your own speaker notes here.
  31. Tip: Add your own speaker notes here.