First of all, thank you for your kind help.
I have tried almost everything I found on stackoverflow but I cannot get this to work.
I created a form to send a te
Your appendTo in success callback is backward. In your example, you are trying to append the .result element to the response variable. Should be:
appendTo
.result
response
success: function(response){ response.appendTo(".result")}