SlideShare uma empresa Scribd logo
1 de 19
JAVA SCRIPT EVENTS AND EVENT LISTENERS
A. D. PATEL INSTITUTE OF TECHNOLOGY
WEB TECHNOLOGY(2160708) : A.Y. 2018-19
GUIDED BY:
PROF. HEMANSHU A. PATEL
(DEPT OF IT, ADIT)
PREPARED BY:
KUNAL KATHE
E.R.NO.:160010116021
SHAH DHRUV
E.R NO.:160010116053
CHINTAN SUDANI
E.R.NO.:160010116056
PATEL RUSHIL
E.R.NO.:170014116001
B.E. (IT) SEM - VI
DEPARTMENT OF INFORMATION TECHNOLOGY
A D PATEL INSTITUTE OF TECHNOLOGY (ADIT)
NEW VALLABH VIDYANAGAR, ANAND, GUJARAT
2
Introduction
• Event-driven: code executed resulting to user or browser action.
• Event: a notification that something specific occurred -- by browser or user.
• Event handler: a script implicitly executed in response to event occurrence.
• Registration: the process of connecting event handler to event.
• Events are JavaScript objects --> names are case sensitive, all use lowercase only.
(Method write should never be used in event handler. May cause document to be written
over.)
• JavaScript events associated with HTML tag attributes which can be used to connect to
event-handlers
3
• JavaScript's interaction with HTML is handled through events that occur when the user or
the browser manipulates a page.
• When the page loads, it is called an event. When the user clicks a button, that click too is an
event,Other examples include events like pressing any key, closing a window, resizing a
window, etc.
• Developers can use these events to execute JavaScript coded responses, which cause buttons
to close windows, messages to be displayed to users, data to be validated, and virtually any
other type of response imaginable.
• Events are a part of the Document Object Model DOM Level 3 and every HTML element
contains a set of events which can trigger JavaScript Code.
4
onclick Event Type
• This is the most frequently used event type which occurs when a user clicks the left button of
his mouse. You can put your validation, warning etc., against this event type.
• One attribute can appear in several different tags:
e.g. onClick can be in <a> and <input>
• HTML element get focus:
1. When user puts mouse cursor over it and presses the left button
2. When user tabs to the element
3. By executing the focus method
4. Element get blurred when another element gets focus
5
• Event handlers can be specified two ways
1. Assigning the event handler script to an event tag attribute
onClick = "alert('Mouse click!');"
onClick = "myHandler();
2. Assigning them to properties of JavaScript object associated with HTML elements.
• The load event: the completion of loading of a document by browser
• The onload attribute of <body> used to specify event handler:
• The unload event: used to clean up things before a document is unloaded.
6
Example:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
</script>
</head>
<body>
<p>Click the following button and see result</p>
<form>
<input type="button" onclick="sayHello()" value="Say Hello" />
</form>
</body>
</html>
7
onSubmit Event Type
• onSubmit is an event that occurs when you try to submit a form. You can put your form
validation against this event type.
• The following Next slide shows how to use onsubmit. Here we are calling a validate
function before submitting a form data to the webserver. If validate function returns true, the
form will be submitted, otherwise it will not submit the data.
8
Example:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
</script>
</head>
<body>
<form method="POST" action="target.html" onsubmit="return validate()">
.......
<input type="submit" value="Submit" />
</form>
</body>
</html>
9
onmouseover and onmouseout
• These two event types will help you create nice effects with images or even with text as
well.
• The onmouseover event triggers when you bring your mouse over any element and the
onmouseout triggers when you move your mouse out from that element.
• Try the following example.
10
Example:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
</script>
</head>
<body>
<p>Bring your mouse inside the division to see the result:</p>
<div onmouseover="over()" onmouseout="out()">
<h2> This is inside the division </h2>
</div>
</body>
</html>
11
Event List
12
Focus & Blur Event Example:
<!DOCTYPE html>
<html>
<head>
<title>Demo</title>
</head>
<body>
<h1>Hello How Are You...?</h1>
<form>
Click This Button<br/>
<input type="button" value="Click Me!" onclick="myFun()"/><br/>
<input type="text" id="username" onfocus="this.blur()"/><br/>
</form>
<script type="text/javascript">
function myFun()
{
document.getElementById("username").value="Dhruv";
}
</script>
</body>
</html>
[fig.1 Before Click On That Button]
[fig.2 After Click On That Button]
13
addEventListener
• The Event Target method addEventListener() sets up a function that will be called
whenever the specified event is delivered to the target.
• Common targets are Element, Document, and Window, but the target may be any object that
supports events (such as XML Http Request).
• addEventListener() works by adding a function or an object that implements Event Listener
to the list of event listeners for the specified event type on the Event Target on which it's
called.
14
Syntax
target.addEventListener(type, listener[, options]);
target.addEventListener(type, listener[, useCapture]);
target.addEventListener(type, listener[, useCapture, wantsUntrusted ]);
document.getElementById("myBtn").addEventListener("click", displayDate);
15
removeEventListener
• The EventTarget.removeEventListener() method removes from the EventTarget an event
listener previously registered with EventTarget.addEventListener().
• The event listener to be removed is identified using a combination of the event type, the
event listener function itself, and various optional options that may affect the matching
process; see Matching event listeners for removal.
16
Syntax
target.removeEventListener(type, listener[, options]);
target.removeEventListener(type, listener[, useCapture]);
17
Other Example Of Events
<!DOCTYPE html>
<html>
<head><title>Display Page</title></head>
<body>
<hr color="orange" />
<center><h1 id="htag">Welcome To ADIT</h1></center>
<hr color="blue" />
<center><button type="button" onclick="Change()">Change</button>
<button type="button" onclick="Hide()">Hide</button>
<button type="button" onclick="Display()">Display</button>
<button type="button" onclick="ChangeColor()">Color Change</button></center>
<hr color="green" />
<script type="text/javascript">
function Change()
{ document.getElementById("htag").innerHTML="Welcome ABC"; }
function Display()
{ document.getElementById("htag").style.display="block"; }
function Hide()
{ document.getElementById("htag").style.display="none"; }
function ChangeColor()
{ document.getElementById("htag").style.color="blue"; }
</script>
</body>
</html>
18
Output
[fig.3 Initial Page] [fig.4 When Click On Change Or Display]
[fig.5 When Click On Hide] [fig.6 When Click On Color Change]
19

Mais conteúdo relacionado

Mais procurados

Form using html and java script validation
Form using html and java script validationForm using html and java script validation
Form using html and java script validation
Maitree Patel
 

Mais procurados (20)

JavaScript - Chapter 5 - Operators
 JavaScript - Chapter 5 - Operators JavaScript - Chapter 5 - Operators
JavaScript - Chapter 5 - Operators
 
Introduction to Javascript
Introduction to JavascriptIntroduction to Javascript
Introduction to Javascript
 
3. Java Script
3. Java Script3. Java Script
3. Java Script
 
Java script
Java scriptJava script
Java script
 
JavaScript - Chapter 13 - Browser Object Model(BOM)
JavaScript - Chapter 13 - Browser Object Model(BOM)JavaScript - Chapter 13 - Browser Object Model(BOM)
JavaScript - Chapter 13 - Browser Object Model(BOM)
 
JavaScript: Events Handling
JavaScript: Events HandlingJavaScript: Events Handling
JavaScript: Events Handling
 
jQuery for beginners
jQuery for beginnersjQuery for beginners
jQuery for beginners
 
Jquery
JqueryJquery
Jquery
 
Form using html and java script validation
Form using html and java script validationForm using html and java script validation
Form using html and java script validation
 
javaScript.ppt
javaScript.pptjavaScript.ppt
javaScript.ppt
 
Javascript basics
Javascript basicsJavascript basics
Javascript basics
 
Introduction of Html/css/js
Introduction of Html/css/jsIntroduction of Html/css/js
Introduction of Html/css/js
 
jQuery
jQueryjQuery
jQuery
 
Java script
Java scriptJava script
Java script
 
Javascript essentials
Javascript essentialsJavascript essentials
Javascript essentials
 
Javascript functions
Javascript functionsJavascript functions
Javascript functions
 
Introduction to JavaScript
Introduction to JavaScriptIntroduction to JavaScript
Introduction to JavaScript
 
JavaScript - Chapter 6 - Basic Functions
 JavaScript - Chapter 6 - Basic Functions JavaScript - Chapter 6 - Basic Functions
JavaScript - Chapter 6 - Basic Functions
 
Jsp ppt
Jsp pptJsp ppt
Jsp ppt
 
Dom
DomDom
Dom
 

Semelhante a Event In JavaScript

Upstate CSCI 450 WebDev Chapter 9
Upstate CSCI 450 WebDev Chapter 9Upstate CSCI 450 WebDev Chapter 9
Upstate CSCI 450 WebDev Chapter 9
DanWooster1
 
Caliburn.micro jump start composite applications for WPF, Silverlight and WP7
Caliburn.micro jump start composite applications for WPF, Silverlight and WP7Caliburn.micro jump start composite applications for WPF, Silverlight and WP7
Caliburn.micro jump start composite applications for WPF, Silverlight and WP7
Igor Moochnick
 
Less03 2 e_testermodule_2
Less03 2 e_testermodule_2Less03 2 e_testermodule_2
Less03 2 e_testermodule_2
Suresh Mishra
 

Semelhante a Event In JavaScript (20)

5 .java script events
5 .java script   events5 .java script   events
5 .java script events
 
types of events in JS
types of events in JS types of events in JS
types of events in JS
 
Javascript Browser Events.pdf
Javascript Browser Events.pdfJavascript Browser Events.pdf
Javascript Browser Events.pdf
 
Web programming
Web programmingWeb programming
Web programming
 
Upstate CSCI 450 WebDev Chapter 9
Upstate CSCI 450 WebDev Chapter 9Upstate CSCI 450 WebDev Chapter 9
Upstate CSCI 450 WebDev Chapter 9
 
B2. activity and intent
B2. activity and intentB2. activity and intent
B2. activity and intent
 
jQuery
jQueryjQuery
jQuery
 
Javascript and DOM
Javascript and DOMJavascript and DOM
Javascript and DOM
 
DHTML - Events & Buttons
DHTML - Events  & ButtonsDHTML - Events  & Buttons
DHTML - Events & Buttons
 
Unit3.pptx
Unit3.pptxUnit3.pptx
Unit3.pptx
 
Client Web
Client WebClient Web
Client Web
 
Javascript #8 : événements
Javascript #8 : événementsJavascript #8 : événements
Javascript #8 : événements
 
Caliburn.micro jump start composite applications for WPF, Silverlight and WP7
Caliburn.micro jump start composite applications for WPF, Silverlight and WP7Caliburn.micro jump start composite applications for WPF, Silverlight and WP7
Caliburn.micro jump start composite applications for WPF, Silverlight and WP7
 
Event
EventEvent
Event
 
JavaScript and DOM Pattern Implementation
JavaScript and DOM Pattern ImplementationJavaScript and DOM Pattern Implementation
JavaScript and DOM Pattern Implementation
 
JavaScript-L20.pptx
JavaScript-L20.pptxJavaScript-L20.pptx
JavaScript-L20.pptx
 
Sperimentazioni lezione6 from_designtoapplication copy
Sperimentazioni lezione6 from_designtoapplication copySperimentazioni lezione6 from_designtoapplication copy
Sperimentazioni lezione6 from_designtoapplication copy
 
Leture5 exercise onactivities
Leture5 exercise onactivitiesLeture5 exercise onactivities
Leture5 exercise onactivities
 
Lecture exercise on activities
Lecture exercise on activitiesLecture exercise on activities
Lecture exercise on activities
 
Less03 2 e_testermodule_2
Less03 2 e_testermodule_2Less03 2 e_testermodule_2
Less03 2 e_testermodule_2
 

Mais de ShahDhruv21

Mais de ShahDhruv21 (12)

Semantic net in AI
Semantic net in AISemantic net in AI
Semantic net in AI
 
Error Detection & Error Correction Codes
Error Detection & Error Correction CodesError Detection & Error Correction Codes
Error Detection & Error Correction Codes
 
Secure Hash Algorithm (SHA)
Secure Hash Algorithm (SHA)Secure Hash Algorithm (SHA)
Secure Hash Algorithm (SHA)
 
Data Mining in Health Care
Data Mining in Health CareData Mining in Health Care
Data Mining in Health Care
 
Data Compression in Data mining and Business Intelligencs
Data Compression in Data mining and Business Intelligencs Data Compression in Data mining and Business Intelligencs
Data Compression in Data mining and Business Intelligencs
 
MongoDB installation,CRUD operation & JavaScript shell
MongoDB installation,CRUD operation & JavaScript shellMongoDB installation,CRUD operation & JavaScript shell
MongoDB installation,CRUD operation & JavaScript shell
 
2D Transformation
2D Transformation2D Transformation
2D Transformation
 
Interpreter
InterpreterInterpreter
Interpreter
 
Topological Sorting
Topological SortingTopological Sorting
Topological Sorting
 
Pyramid Vector Quantization
Pyramid Vector QuantizationPyramid Vector Quantization
Pyramid Vector Quantization
 
JSP Directives
JSP DirectivesJSP Directives
JSP Directives
 
WaterFall Model & Spiral Mode
WaterFall Model & Spiral ModeWaterFall Model & Spiral Mode
WaterFall Model & Spiral Mode
 

Último

AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
ankushspencer015
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Christo Ananth
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
MsecMca
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
 

Último (20)

Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 

Event In JavaScript

  • 1. JAVA SCRIPT EVENTS AND EVENT LISTENERS A. D. PATEL INSTITUTE OF TECHNOLOGY WEB TECHNOLOGY(2160708) : A.Y. 2018-19 GUIDED BY: PROF. HEMANSHU A. PATEL (DEPT OF IT, ADIT) PREPARED BY: KUNAL KATHE E.R.NO.:160010116021 SHAH DHRUV E.R NO.:160010116053 CHINTAN SUDANI E.R.NO.:160010116056 PATEL RUSHIL E.R.NO.:170014116001 B.E. (IT) SEM - VI DEPARTMENT OF INFORMATION TECHNOLOGY A D PATEL INSTITUTE OF TECHNOLOGY (ADIT) NEW VALLABH VIDYANAGAR, ANAND, GUJARAT
  • 2. 2 Introduction • Event-driven: code executed resulting to user or browser action. • Event: a notification that something specific occurred -- by browser or user. • Event handler: a script implicitly executed in response to event occurrence. • Registration: the process of connecting event handler to event. • Events are JavaScript objects --> names are case sensitive, all use lowercase only. (Method write should never be used in event handler. May cause document to be written over.) • JavaScript events associated with HTML tag attributes which can be used to connect to event-handlers
  • 3. 3 • JavaScript's interaction with HTML is handled through events that occur when the user or the browser manipulates a page. • When the page loads, it is called an event. When the user clicks a button, that click too is an event,Other examples include events like pressing any key, closing a window, resizing a window, etc. • Developers can use these events to execute JavaScript coded responses, which cause buttons to close windows, messages to be displayed to users, data to be validated, and virtually any other type of response imaginable. • Events are a part of the Document Object Model DOM Level 3 and every HTML element contains a set of events which can trigger JavaScript Code.
  • 4. 4 onclick Event Type • This is the most frequently used event type which occurs when a user clicks the left button of his mouse. You can put your validation, warning etc., against this event type. • One attribute can appear in several different tags: e.g. onClick can be in <a> and <input> • HTML element get focus: 1. When user puts mouse cursor over it and presses the left button 2. When user tabs to the element 3. By executing the focus method 4. Element get blurred when another element gets focus
  • 5. 5 • Event handlers can be specified two ways 1. Assigning the event handler script to an event tag attribute onClick = "alert('Mouse click!');" onClick = "myHandler(); 2. Assigning them to properties of JavaScript object associated with HTML elements. • The load event: the completion of loading of a document by browser • The onload attribute of <body> used to specify event handler: • The unload event: used to clean up things before a document is unloaded.
  • 6. 6 Example: <!DOCTYPE html> <html> <head> <script type="text/javascript"> </script> </head> <body> <p>Click the following button and see result</p> <form> <input type="button" onclick="sayHello()" value="Say Hello" /> </form> </body> </html>
  • 7. 7 onSubmit Event Type • onSubmit is an event that occurs when you try to submit a form. You can put your form validation against this event type. • The following Next slide shows how to use onsubmit. Here we are calling a validate function before submitting a form data to the webserver. If validate function returns true, the form will be submitted, otherwise it will not submit the data.
  • 8. 8 Example: <!DOCTYPE html> <html> <head> <script type="text/javascript"> </script> </head> <body> <form method="POST" action="target.html" onsubmit="return validate()"> ....... <input type="submit" value="Submit" /> </form> </body> </html>
  • 9. 9 onmouseover and onmouseout • These two event types will help you create nice effects with images or even with text as well. • The onmouseover event triggers when you bring your mouse over any element and the onmouseout triggers when you move your mouse out from that element. • Try the following example.
  • 10. 10 Example: <!DOCTYPE html> <html> <head> <script type="text/javascript"> </script> </head> <body> <p>Bring your mouse inside the division to see the result:</p> <div onmouseover="over()" onmouseout="out()"> <h2> This is inside the division </h2> </div> </body> </html>
  • 12. 12 Focus & Blur Event Example: <!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <h1>Hello How Are You...?</h1> <form> Click This Button<br/> <input type="button" value="Click Me!" onclick="myFun()"/><br/> <input type="text" id="username" onfocus="this.blur()"/><br/> </form> <script type="text/javascript"> function myFun() { document.getElementById("username").value="Dhruv"; } </script> </body> </html> [fig.1 Before Click On That Button] [fig.2 After Click On That Button]
  • 13. 13 addEventListener • The Event Target method addEventListener() sets up a function that will be called whenever the specified event is delivered to the target. • Common targets are Element, Document, and Window, but the target may be any object that supports events (such as XML Http Request). • addEventListener() works by adding a function or an object that implements Event Listener to the list of event listeners for the specified event type on the Event Target on which it's called.
  • 14. 14 Syntax target.addEventListener(type, listener[, options]); target.addEventListener(type, listener[, useCapture]); target.addEventListener(type, listener[, useCapture, wantsUntrusted ]); document.getElementById("myBtn").addEventListener("click", displayDate);
  • 15. 15 removeEventListener • The EventTarget.removeEventListener() method removes from the EventTarget an event listener previously registered with EventTarget.addEventListener(). • The event listener to be removed is identified using a combination of the event type, the event listener function itself, and various optional options that may affect the matching process; see Matching event listeners for removal.
  • 17. 17 Other Example Of Events <!DOCTYPE html> <html> <head><title>Display Page</title></head> <body> <hr color="orange" /> <center><h1 id="htag">Welcome To ADIT</h1></center> <hr color="blue" /> <center><button type="button" onclick="Change()">Change</button> <button type="button" onclick="Hide()">Hide</button> <button type="button" onclick="Display()">Display</button> <button type="button" onclick="ChangeColor()">Color Change</button></center> <hr color="green" /> <script type="text/javascript"> function Change() { document.getElementById("htag").innerHTML="Welcome ABC"; } function Display() { document.getElementById("htag").style.display="block"; } function Hide() { document.getElementById("htag").style.display="none"; } function ChangeColor() { document.getElementById("htag").style.color="blue"; } </script> </body> </html>
  • 18. 18 Output [fig.3 Initial Page] [fig.4 When Click On Change Or Display] [fig.5 When Click On Hide] [fig.6 When Click On Color Change]
  • 19. 19