I have a radio element (8 elements with same name) and when I want to make anyone of them selected/checked I use the code:
myelmt.prop("checked",true)
The problem is that this code DOES NOT trigger the onchange event. Why? I always have to do this:
myelmt.prop("checked",true).trigger("change")
I have a libraary that listens to the change value of the radio, why the browser is not firing the onchange event when prop() is being used?