How does jquery (or natively) listen for events that are passively modified by input range?

has a requirement to catch events when the value of input range changes. Events that
actively change input range can be captured through oninput and onpropertychange of jq.
but events that set values directly through jq cannot capture
$("- sharpinput"). Val (111);
is there any way to capture this event?

Jul.27,2021

$('-sharpinput').val(111).trigger('change')
Menu