> <form id="iiForm" name="iiForm" method="post" action="/dev/ii.faces"
> enctype="application/x-www-form-urlencoded">
> <input id="iiForm:iiDude" name="iiForm:iiDude" type="text" value="Show
> Me The Money" />
>
> Here I want to get the value of iiForm:iiDude.

Why not use responseXML since you're returning an XML doc?  Maybe
something like:

$('#iiForm\:iiDude', xhr.responseXML).attr('value');

Reply via email to