[jQuery] Using multiple selectors

[jQuery] Using multiple selectors


I've a form like
<form id="Test" ...>
<fieldset>
<table ...>
<tbody>
<tr>
<td><input name="Prefix"></td>
Now I try to access it in the following way:
$('#Test, Prefix').value = 'Testing";
I also tried
$('#Test', 'Prefix').value = 'Testing";
with no success. Any idea what's wrong?
O. Wyss