Remove paragraph with fade and animation : Paragraph « jQuery « JavaScript DHTML






Remove paragraph with fade and animation

    
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <style type="text/css">
        a.test { font-weight: bold; color:red;}
    </style>

    <script type="text/javascript">
 $(document).ready(function(){

    $("input.buttonA").click(function(){ $("div.contentToChange").find("p.thirdparagraph").hide("slow"); });



 });

    </script>
  </head>
  <body>
    <input type="button" value="Hide" class="buttonA" />



    <div style="background:#eee;" class="contentToChange">
        <h2>Header 2</h2>
       
        <p class="firstparagraph">Lorem ipsum <em>dolor</em> sit amet, consectetuer <em>adipiscing</em> elit, sed diam nonummy nibh euismod <em>tincidunt</em> ut laoreet dolore magna aliquam erat <strong>volutpat</strong>. Ut wisi enim ad minim <em>veniam</em>, quis nostrud exerci <strong>tation</strong> ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.</p>
        
        <p class="secondparagraph">Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse <strong>molestie</strong> consequat, vel illum <strong>dolore</strong> eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer <strong>adipiscing</strong> elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>
        
        <p class="thirdparagraph">Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea <em>commodo</em> consequat. Duis autem vel eum iriure dolor in hendrerit in <em>vulputate</em> velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te <strong>feugait</strong> nulla facilisi.</p>
        
        <p class="fourthparagraph">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, <strong>quis</strong> nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
        
        <p class="fifthparagraph">Lorem ipsum <em>dolor</em> sit amet, consectetuer <em>adipiscing</em> elit, sed diam nonummy nibh euismod <em>tincidunt</em> ut laoreet dolore magna aliquam erat <strong>volutpat</strong>. Ut wisi enim ad minim <em>veniam</em>, quis nostrud exerci <strong>tation</strong> ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.</p>
        
        <p class="sixthparagraph">Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse <strong>molestie</strong> consequat, vel illum <strong>dolore</strong> eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer <strong>adipiscing</strong> elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>
        
    </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.Set paragraph text value
5.Set HTML for paragraph
6.Animates all paragraphs to slide up or down, completing the animation within 600 milliseconds.
7.Add two classes to a paragraph
8.Click a paragraph to convert it from html to text.
9.Add some html to paragraph.
10.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).
11.Add text to the paragraph (notice the bold tag is escaped).
12.Selects all paragraphs and removes those without a class "selected".
13.Selects all paragraphs and removes those that aren't of class "selected" or the first one.
14.Selects all paragraphs, then slices the selection to include only the first element.
15.Find all the text nodes inside a paragraph and wrap them with a bold tag.
16.Starts with all paragraphs and searches for descendant span elements, same as $("p span")
17.Locate all the paragraphs after the second child in the body and give them a class.
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