Does jQuery Attribute / Value change trigger appropriate event handlers associated with the element?

For example, if I select a radio button via jQuery code, does the onClick event for that particular input fire?

+2


source to share


1 answer


No, because it's not a click. You can trigger an event on an element using a method, trigger

or fire any registered event handlers without triggering the default action using a method triggerHandler

.



+4


source







All Articles