Answers for "jquery find multiple"

4

jquery or selector

$( "div, span, p.myClass" ).css( "border", "3px solid red" );
Posted by: Guest on May-29-2020
1

jquery find multiple

var tds = $(this).find('input, textarea');
Posted by: Guest on September-24-2020
5

jquery multiple selectors

/* 
If we want to apply same functionality and features to more than one selectors then we use multiple selector option.
I 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.


Kindly take a look in below example:
*/
Html:
<div>div</div>
<p class="myClass">p class="myClass"</p>
<p class="notMyClass">p class="notMyClass"</p>
<span>span</span>

Js:
<script>
$( "div, span, p.myClass" ).css( "border", "3px solid red" );
</script>

/*
I Hope it will help you.
Namaste
*/
Posted by: Guest on May-05-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language