Say I have an HTML like:
<p>
<label>Label</label>
<input type="file" />
<div>test div</div>
</p>
I want to select the label
, input
and div
who are the child of the p
tag, how can I select them all in one time? I don't want to be more specific because they might change.
Thanks,