Suppose I have a form in Which contains a numberinputs and textareas. How do I identify which one is currently clicked on?
$('body').on('change', 'input textarea', function() {
})
In other words,How detect which type is currently clicked, inputs or textareas?