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

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -