about 11 years ago
Description:
The eq ( index ) method reduces the set of matched elements to a single element or we can say that
find the element that matches or equals the index provided.
Syntax:
Here is the simple syntax to use this method:
- <!DOCTYPE html>
- <html>
- <head><title></title>
- <link href="style.css" type="text/css" rel="stylesheet" />
- <script type="text/javascript"
- src="/jquery/jquery-1.3.2.min.js"></script>
- <script type="text/javascript" language="javascript">
- <script>
- $(document).ready(function(){
- $( "body" ).find( "div" ).eq( 3 ).addClass( "yellow" );
- });
- </script>
- </head>
- <body>
- <div>0</div>
- <div>1</div>
- <div>2</div>
- <div>3</div>
- <div>4</div>
- <div>5</div>
- <div>6</div>
- <div>7</div>
- <div>8</div>
- <div>9</div>
- <div>10</div>
- </body>
- </html>
<!DOCTYPE html> <html> <head><title></title> <link href="style.css" type="text/css" rel="stylesheet" /> <script type="text/javascript" src="/jquery/jquery-1.3.2.min.js"></script> <script type="text/javascript" language="javascript"> <script> $(document).ready(function(){ $( "body" ).find( "div" ).eq( 3 ).addClass( "yellow" ); }); </script> </head> <body> <div>0</div> <div>1</div> <div>2</div> <div>3</div> <div>4</div> <div>5</div> <div>6</div> <div>7</div> <div>8</div> <div>9</div> <div>10</div> </body> </html>
CSS:-
- *{
- padding:0px;
- margin:0px;
- }
- .body{
- font:14px/1 arial,helvetica,sans-serif;
- }
- div {
- width: 20px;
- height: 20px;
- margin: 10px;
- float: left;
- padding:10px;
- border-radius:50%;
- border: 3px solid red;
- }
- .yellow {
- background: yellow;
- }
*{ padding:0px; margin:0px; } .body{ font:14px/1 arial,helvetica,sans-serif; } div { width: 20px; height: 20px; margin: 10px; float: left; padding:10px; border-radius:50%; border: 3px solid red; } .yellow { background: yellow; }
Can you help out the community by solving one of the following Javascript problems?
Do activity (Answer, Blog) > Earn Rep Points > Improve Rank > Get more opportunities to work and get paid!
For more topics, questions and answers, please visit the Tech Q&A page.
0 Comment(s)