Given the following sample code:
$(document).ready(function(){ $(\":input\").blur(function(){ alert(\"The input type is:\" ); //How would this l
This should work...
$(document).ready(function(){ $("input").blur(function(){ var type = this.type; alert("The input type is:" + type); }) });