[jQuery] Subscribe form / ajax / jQuery ?
you could also use:
$('form.simplesubscribe').submit( function(){
$("div.IDiwanted", this).html("blah");
The ",this" inside the $() provides the context for $() to look in.
Review the $(...,Context) section of the jquery.com/docs/base/ for a better description and other examples.
Shawn Tumey
Cofounder
MT Web Productions LLC
----