> I've tried $('#form1#input1') or something similar but it doesn't
> work. What is the correct syntax? Thanks!

The correct syntax is CSS, so you need a space between the two:

$('#form1 #input1');

or, since the input you want has an ID you can simply use that:

$('#input1');

Reply via email to