Skip to content

Instantly share code, notes, and snippets.

@sofish
Created January 16, 2011 15:56
Show Gist options
  • Save sofish/781901 to your computer and use it in GitHub Desktop.
Save sofish/781901 to your computer and use it in GitHub Desktop.
input:blur
var input = document.getElementsByTagName('input'), length = input.length, i = 0;
for(;i<length;){
input[i++].onblur = function(){
alert('yeah');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment