I'm using the following snippet to detect every time a particular form input field changes.
$( '#textbox' ).on( 'input', function() {
// Do something here
});
This particular input field belongs to a form which has checkboxes, radio buttons and more text input fields. Is there a way to detect when there is a change to any of the form's fields?