Javascript Course

The this and target keywords can be used in JavaScript events to get the element associated to the registered event.
- this - is allways what the event was bound to (the object to which the event was registered).
- target - is a property of the Event object. event.target is the element that triggers the event.


• To can use the target property, you must add a parameter to the function with the event.
Syntax:
object.event = function(ev){
 // here you can use: ev.target
}

The this keyword and ev.target make the difference between the object to which the event is registered and the element that triggers the event. Sometimes they represent the same object, but not allways, especially when we work with parent and children elements.

- Here's an example. A #parent DIV with a #child DIV inside it; and onclick event registered to #parent, getting the ID of the element returned by this and ev.target.
<!doctype html>
<html>
<head>
<title>title</title>
<style>
#parent {
 height: 7em;
 background: #00da01;
 padding: 1em;
}
#child {
 height: 70%;
 margin: 1em 5em;
 background: #8889fe;
}
</style>
</head>
<body>
<h4>example this and target</h4>
<p>Click on the Child (blue rectangle), then on the Parent (green area), and see the difference in the alert window.</p>

<div id='parent'>Parent
 <div id='child'>Child</div>
</div>
<script>
document.getElementById('parent').onclick = function(ev){
 var id1 = this.id;
 var id2 = ev.target.id;
 alert('this = '+ id1 +'\n ev.target = '+ id2);
}
</script>
</body>
</html>

Working with this keyword and event.target

The this keyword and ev.target are useful in events for example when you want to register an event with instructions to an element but not to its children, or with different instructions for children. Or, when you want to work exactly with the element which triggers the event (use ev.target).


- In the following example the alert window is displayed only when you click on the Parent DIV.
<!doctype html>
<html>
<head>
<title>title</title>
<style>
#parent {
 height: 7em;
 background: #00da01;
 padding: 1em;
}
#child {
 height: 70%;
 margin: 1em 5em;
 background: #8889fe;
}
</style>
</head>
<body>
<h4>example ev.target</h4>
<p>Click on the Child (blue rectangle), then on the Parent (green area).</p>

<div id='parent'>Parent
 <div id='child'>Child</div>
</div>

<script>
document.getElementById('parent').onclick = function(ev){
 if(this === ev.target) {
 alert(this.id);
 }
}
</script>
</body>
</html>

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag is a block element?
<div> <img> <span>
<div>Web Programming and Development</div>
Which CSS code displays the text underlined?
font-style: italic; text-decoration: underline; font-weight: 500;
h2 {
  text-decoration: underline;
}
Click on the JavaScript function that can access other function after a specified time.
insertBefore() setTimeout() querySelector()
function someFunction() { alert("CoursesWeb.net"); }
setTimeout("someFunction()", 2000);
Click on the instruction that returns the number of items of a multidimensional array in PHP.
count($array) count($array, 1) strlen()
$food =["fruits" =>["banana", "apple"), "veggie" =>["collard", "pea"));
$nr_food = count($food, 1);
echo $nr_food;       // 6
this and target in JavaScript Events

Last accessed pages

  1. Working with getElementsByTagName (13024)
  2. For loops in JavaScript (986)
  3. SHA1 Encrypt data in JavaScript (35339)
  4. AJAX with POST and PHP (18831)
  5. Image object (1401)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (333)
  2. Read Excel file data in PHP - PhpExcelReader (127)
  3. The Four Agreements (98)
  4. PHP Unzipper - Extract Zip, Rar Archives (95)
  5. The Mastery of Love (90)
Chat
Chat or leave a message for the other users
Full screenInchide