On Oct 12, 7:12 am, zephyr <marc.at.comp...@gmail.com> wrote:
> Hi,
> I have a form and want to select a text input element _in that
> specific form_. This is my code:
>
> $("form [name=" +formName + "] :text[name=" +textInputField+ "]"))

Why not:

 $(document.forms[formName].elements[inputName])


--
Rob

Reply via email to