I add a class to an input field when the text changes using jquery in the document.onready function.
$('#formid2 input').on('change', function (e) {
$(this).addClass('changed');
});
Is there a way to verify using chrome dev tools whether the class was really added?