So I'm using jquery to detect the change in an ID element in my form, like this:
$(document).ready(function(){
$('#ID_a').change(function(){
if(<<<some condition>>>){
$('#ID_a').append(<<<more info>>>)
}
})
});
But I'm finding my site visitors aren't seeing the appended content because they aren't clicking off of the ID element because it's the last field in my form. They are just clicking the submit button. What can I do to help them see the appended content, which are new fields requesting additional info on the form? (Aside from completely redesigning my form)