I'm working on a function that process form data through ajax. I've got the function written, but in the end, once I've got the data, I need to put a message into a div within the submitted form. The div has a class of 'message'.
When referring to the form as $(this) in my function, how would I get to the div with the class of "message" within it? (So the equivalent of $('form.message'), but using $(this) instead of form)
$('form.message')would select every form with classmessage, not the element with this class inside the form. – Felix Kling May 10 '11 at 12:35