key down on the div

key down on the div

by Ishank Dubey

HTML

<div tabindex="1"><span class="filter-option pull-left">Mustard</span>&nbsp;<span class="bs-caret"><span class="caret"></span></span></div>


<video  controls>
  <source src="movieq.mp4" type="video/mp4">
  <source src="movieq.ogg" type="video/ogg">
  Your browser does not support the video tag.
</video>

JavaScript

document.getElementsByTagName("div")[0].addEventListener("keydown",function(e){
console.log(e);
})


document.getElementsByTagName("div")[0].focus();