Answers for "selector 2th js"

1

jquery specific child by index

<div class="second">
    <div class="selector" id="selFirst">Number One</div>
    <div class="selector" id="selSecond">Number Two</div>
    <div></div>
</div> 
<script>
	var index = 0
 	console.log($('.second').children().eq(index).text());
 	//Number One
</script>
Posted by: Guest on November-17-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

Browse Popular Code Answers by Language