Summernote's modals have modals with inputs inside.
My JS goes here:
$('input, select, textarea').on('change',
function(e){
var inputs = $('input:text, input[type="radio"]:checked').map(
function(){
/* show values */
}
).get();
}
);
Tried to use not() but it doesn't work:
var inputs = $('input:text, input[type="radio"]:checked')
.not('div.note-editor > input')
.map()
.get();