1
I’m having a problem finding an Element within Another and checking if it is first element, see the structure:
<div class="form-group">
  <input type="text" id="teste1" placeholder="Texto">
  <label for="teste1">Texto</label>
  <p class="help-block">Teste.</p>
</div>
<div class="form-group">
  <label>Texto</label>
  <p>Texto</p>
  <p class="help-block">Teste.</p>
</div>
I’m looking to select the tag label within the form-group but only if he’s the first element, I tried this way on jQuery:
if ( $('.form-group').children().first().is('label') ) {
  $(this).parent().css("padding-top", "0");
}
But the answer is false.
I imagined that the
jQueryafter the$(document).readyread it could fetch the elements, nor believed that needed to pass an array first, thanks to the example.– iLeonardo Carvalho