Understand the Relationship Between HTML Attribute and Object Property Event Handlers

Alex Reardon
InstructorAlex Reardon
Share this video with your friends

Social Share Links

Send Tweet
Published 3 years ago
Updated 3 years ago

Using HTML attributes event handlers and object property event handlers are related ways of expressing a single event listener binding to an element. This lesson explores the dynamics and often strangeness of that relationship.

Instructor: [0:00] HTML attribute event handlers and object property event handlers are linked ways of expressing an event handler binding. On close inspection, there are some interesting characteristics to their relationship.

[0:14] First up, you can only use one binding mechanism or the other. You cannot have both. Setting one will override the other. Here, I am rendering my HTML with an onclick attribute on my button element.

[0:28] For now, I am commenting out my JavaScript file so my HTML and CSS is all there is on this page. When I click on the button, you can see the code inside of my onclick HTML attribute is being called. I'm now going to uncomment my JavaScript file.

[0:47] Inside of my JavaScript file, I'm assigning an onclick property to my button element. When I click on my button, only the element property event handler is being called. My object property assignment has replaced the onclick HTML attribute event handler.

[1:10] After the assignment of onclick, I'm now going to set the buttons onclick HTML attribute again from within my JavaScript. Now, if I click the button, my new HTML attribute event handler will be called and not the onclick property assignment.

[1:28] If I have a HTML attribute event handler, I can clear that event handler in two different ways. Firstly, I can remove the HTML attribute completely to unbind the event handler. I can also clear the event handler by setting the onclick property on my button element to null.

[1:52] If we take a look at our HTML, we'll see that our onclick HTML attribute is sitting there happily unmodified, even though the event handler has been unbound. This behavior is different to other element properties, such as ID. Here, my button has an ID of original ID. We can see it over here in the element panel as well.

[2:19] If I change the value of this ID inside of my JavaScript to changed ID, you will see that my HTML was updated to reflect this new value. Interestingly, you can execute an HTML attribute event handler function directly by executing the corresponding object property event handler. If the event handler was created through object property assignment, then in this case, the onclick function would call that one.

[2:53] The utility of this behavior is super limited, as you're not actually creating or dispatching an event, you're just executing the onclick function. I'm going to change this onclick function to logout the this runtime context and the event.

[3:09] If we look over at the event panel, we can see that that this runtime context was set correctly to be the button, which is the element that the event handler is bound to. Our event object is undefined, which makes sense because we're not creating any events or parsing any events into this function.

[3:27] Technically, you can parse in an event to an onclick function to populate the event. However, the ability to execute event handlers directly has extremely limited utility. I personally have never written code like this. I will cover how you can create and dispatch your own events in my synthetic events lesson.

egghead
egghead
~ 22 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today