Trying to add class to parent div <div class="widget-content"> if .widget-content li a has specific class .ifthis.
HTML:
<div class="widget-content">
<ul>
<li><a href="https://twitter.com/slycolor" class="ifthis"> <b>This Text Should Red</b></a>
</li>
<li><a href="https://www.facebook.com/slycolor" class="ifthis"> <b>This Text Should Red</b></a>
</li>
</ul>
</div>
I have tried This:
$('.widget-content li a').has('.ifthis').parent('.widget-content').addClass('social-sidebar'); 
But not working, see this example fiddle.