Locate all the paragraphs after the second child in the body and give them a class. : Paragraph « jQuery « JavaScript DHTML






Locate all the paragraphs after the second child in the body and give them a class.

 


<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){

              $(":nth-child(1)").nextAll("p").css("color","red");

        });
    </script>
  </head>
  <body>
    <body>
              
          <p>p</p>
          <div>div</div>
        
          <p>p</p>
          <p>p</p>
          <div>div</div>
          <p>p</p>
          <div>div</div>
          
    </body>
</html>

   
  








Related examples in the same category

1.Append text node to
2.Paragraph click event
3.Paragraph slide in and out
4.Remove paragraph with fade and animation
5.Set paragraph text value
6.Set HTML for paragraph
7.Animates all paragraphs to slide up or down, completing the animation within 600 milliseconds.
8.Add two classes to a paragraph
9.Click a paragraph to convert it from html to text.
10.Add some html to paragraph.
11.Find the text in the first paragraph (stripping out the html), then set the html of the last paragraph to show it is just text (the red bold is gone).
12.Add text to the paragraph (notice the bold tag is escaped).
13.Selects all paragraphs and removes those without a class "selected".
14.Selects all paragraphs and removes those that aren't of class "selected" or the first one.
15.Selects all paragraphs, then slices the selection to include only the first element.
16.Find all the text nodes inside a paragraph and wrap them with a bold tag.
17.Starts with all paragraphs and searches for descendant span elements, same as $("p span")
18.To display the text of all paragraphs in an alert box the first time each of them is clicked:
19.To unbind all events from all paragraphs
20.To hide paragraphs on a page when they are clicked:
21.To highlight a clicked word in the paragraph.
22.Access the offset of the second paragraph:
23.To change the color of any paragraph to red on mouseover event.
24.Wrap a new div around all of the paragraphs.
25.Replace all the paragraphs with bold words.
26.Replace all the paragraphs with empty div elements.
27.Removes all child nodes (including text nodes) from all paragraphs
28.Removes all paragraphs from the DOM
29.Clones all b elements (and selects the clones) and prepends them to all paragraphs.
30.To set the color of all paragraphs to red and background to blue:
31.Inserts all paragraphs before an element
32.Toggles all paragraphs.
33.Animates all hidden paragraphs to show slowly