Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
jQuery

Change Event in jQuery

Detect when input/select/textarea values change (after commit for text).

Change Event in jQuery — a practical guide to jQuery change event with clear examples you can reuse in real projects.

jQuery Tutorial Series (23/101). Prefer one article? Read the complete jQuery tutorial.

Short description

For per-keystroke updates, use input instead of change.

change

$('#country').on('change', function () {
  loadCities($(this).val());
});

Leave a reply

Your email address will not be published. Required fields are marked *