<title>jQuery has() Method Return Multiple Matching Element</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
$(document).ready(function(){
$('.mymultibtn').click(function(){
$("ul li").has("em, span, b").css("color","orange");
<h2>jQuery has() Method Return Multiple Matching Element</h2>
<li><em>Welcome to Tutorialdeep!</em></li>
<li>Learn jQuery from <span>Tutorialdeep</span>.</li>
<li><b>Check live example</b> to learn and use on your project.</li>
<li>Leave a comment if you have any query.</li>
<button type="button" class="mymultibtn">Click to Select Multiple</button>