Skip to content

Instantly share code, notes, and snippets.

@scriptmaster
Created November 16, 2017 15:49
Show Gist options
  • Save scriptmaster/9cd72c70df4629eca3080cce860887d6 to your computer and use it in GitHub Desktop.
Save scriptmaster/9cd72c70df4629eca3080cce860887d6 to your computer and use it in GitHub Desktop.
oGMEMy
<input />
<div id="d1" tabindex="0">div</div>
<input />
//Plain js
window.onload = function(){
 var d1=document.getElementById('d1')
 d1.onfocus = function(){
   this.innerHTML = 'Focused'
 }
 d1.onblur = function(){
   this.innerHTML = 'Blurred'
 }
}
// read about tabindex: https://www.w3.org/TR/WCAG20-TECHS/C27.html
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.5/angular.min.js"></script>
div:focus {
background-color: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment