I have a jQuery selector function which fires when an element inside a form called #frmEditWebshop
has changed.
I use:
$('#frmEditWebshop').on('change', function() {
This works fine for all elements where I change the value with the keyboard and I click out the element.
But I also have text input elements where the value changes by jQuery/Bootstrap plugins like colorpickers
, modals
, etc.
These elements don't fire the function. How can I achieve this without making selectors for each jQuery plugin.