Guest User

James

a guest
May 9th, 2011
372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>TEST</title>
  6. <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
  7. <script type="text/javascript">
  8. jQuery(document).ready(function() {
  9. jQuery(".contentx").hide();
  10. //toggle the componenet with class msg_body
  11. jQuery(".headingx").click(function()
  12. {
  13. jQuery(this).next(".contentx").slideToggle(500);
  14. });
  15. });
  16. </script>
  17. </head>
  18. <body>
  19. <p class="headingx">CLICK ME</p>
  20. <div class="contentx green">CONTENT</div>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment