jquery page change event code example
Example 1: jquery trigger change event
$(selector).trigger("change");
Example 2: jquery on change
$(document).on('change', 'input', function() {
// Does some stuff and logs the event to the console
});
$(selector).trigger("change");
$(document).on('change', 'input', function() {
// Does some stuff and logs the event to the console
});