Skip to main content
edited body
Source Link
Kenly
  • 26.3k
  • 7
  • 47
  • 64

forFor the case

<element class="a">
  <element class="b c">
  </element>
</element>

youYou would need to put a space in between .a and .b.c

$('.a .b.c')

for the case

<element class="a">
  <element class="b c">
  </element>
</element>

you would need to put a space in between .a and .b.c

$('.a .b.c')

For the case

<element class="a">
  <element class="b c">
  </element>
</element>

You would need to put a space in between .a and .b.c

$('.a .b.c')
Source Link
juanpaulo
  • 1.4k
  • 1
  • 9
  • 3

for the case

<element class="a">
  <element class="b c">
  </element>
</element>

you would need to put a space in between .a and .b.c

$('.a .b.c')