1/*
2If we want to apply same functionality and features to more than one selectors then we use multiple selector option.
3I think we can say this feature is used like reusability. write a jquery function and just add multiple selectors in which we want same features.
4
5
6Kindly take a look in below example:
7*/
8Html:
9<div>div</div>
10<p class="myClass">p class="myClass"</p>
11<p class="notMyClass">p class="notMyClass"</p>
12<span>span</span>
13
14Js:
15<script>
16$( "div, span, p.myClass" ).css( "border", "3px solid red" );
17</script>
18
19/*
20I Hope it will help you.
21Namaste
22*/