Answers for "jquery or selector"

CSS
4

jquery or selector

$( "div, span, p.myClass" ).css( "border", "3px solid red" );
Posted by: Guest on May-29-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
1

jquery select

$('#selector').selectmenu();
Posted by: Guest on February-05-2020
0

jquery or selector

'.classA, .classB'
Posted by: Guest on May-27-2021

Browse Popular Code Answers by Language