Hi there,
I have the folowing html markup.
<DIV class="bubble bubble_white">
<DIV class=bubble_large></DIV>
</DIV>
<DIV class="bubble bubble_black">
<DIV class=bubble_large></DIV>
</DIV>
I want to select the classes bubble bubble_white and bubble bubble_black.
I was thinking about the code underneath but didn't work.
$(".bubble.[class^=bubble_]")
Any ideas?