diff --git a/docs/_includes/options/events/jquery.html b/docs/_includes/options/events/jquery.html index dd28c077..8023909f 100644 --- a/docs/_includes/options/events/jquery.html +++ b/docs/_includes/options/events/jquery.html @@ -19,7 +19,36 @@ What events does Select2 listen for? - {% include options/not-written.html %} +
+ Select2 will listen for the change
event on the
+ <select>
that it is attached to. If you make any
+ external changes that need to be reflected in Select2 (such as changing the
+ value), you should trigger this event.
+
change
to notify Select2 of changes?
+
+ It's common for other components to be listening to the change
+ event, or for custom event handlers to be attached that may have side
+ effects. Select2 does not have a custom event (like
+ select2:update
) that can be triggered other than
+ change
. You can rely on jQuery's event namespacing to limit
+ the scope to Select2 though by triggering the change.select2
+ event.
+