Given the following code example:
$(document).ready(function(){
$(":input").blur(function(){
alert("The input type is:" );
})
});
How can I determine if this is input, selection, text, etc.?
This is not an example of the real world, but for the purposes of this issue it should be sufficient
source
share