Use it without the greater than:
$("#panel :input");
The > means only direct children of the element, if you want all children no matter the depth just use a space.
Use it without the greater than:
$("#panel :input");
The > means only direct children of the element, if you want all children no matter the depth just use a space.