Is it possible to somehow determine in javascript or using jQuery whether the change was made - by the user or by code?
- Example of making changes by the user: the user clicked on the checkbox and set it to the state
:checked- then the user made the change - Example code changes:
$('#some-checkbox').prop('checked', true)
changeevent and check theisTrustedfield of the eventisTrusted- Grundy