I have a /mysite/nameprocessor
handler that I want to pass a string to using jQuery ajax:
<a href="#"><c:out value="${name}"/></a>
Do I need to wrap this inside a form and serialize the form like in Prototype, which I think would look something like this:
<form action="/mysite/nameprocessor" method="post"
onsubmit="new Ajax.Request('/mysite/nameprocessor',
{asynchronous:true, evalScripts:true, parameters:Form.serialize(this)});
return false;">