javascript - How to use the change function for input types efficiently -
i tracking input changes this:
$(document).ready(function() { $('input').change(function () { alert("key pressed"); }); $('textarea').change(function () { alert("key pressed"); }); $('input:radio').change(function() { alert("key pressed"); }); $('input:checkbox').change(function() { alert("key pressed"); }); });
is possible re-factor above code don't need call each element separately?
use multiselectors refactor code :input
select input elements
$(':input').on('change', function () { alert("key pressed"); });
Comments
Post a Comment