How do I find component event descriptions in the document?
-
Hi,How do I find component event descriptions in the document?
-
@czpae86 In the reference page of each element there is an “Events” section.
-
Some do not specify. such as ons-range element,How to capture change events?
-
@czpae86 Only the custom events are specified, the native ones are assumed. Just capture it normally with
addEventListener
oronchange
handler.Edit: Actually, the range only throws
change
when you release the drag. If you want something continuous useinput
event instead.