Advertisement
imgirlrauhl

Updates Tab #2 - Code 2

Sep 11th, 2014
2,272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. <script type="text/javascript">
  2. jQuery(document).ready(function() {
  3. jQuery(".mwah").hide();
  4. //toggle the componenet with class msg_body
  5. jQuery(".fringe").click(function()
  6. {
  7. jQuery(this).next(".mwah").slideToggle(500);
  8. });});
  9. </script>
  10.  
  11. <div id="upd">
  12.  
  13. <!-- Starts updates part -->
  14. <a href="#" class="fringe" title="updates"><span class="iconicfill-rain"></span></a>
  15. <div class="mwah">
  16. Your text goes here
  17. </div>
  18. <!-- Ends updates part -->
  19.  
  20. <!-- Starts status part -->
  21. <a href="#" class="fringe" title="status"><span class="iconicfill-user"></span></a>
  22. <div class="mwah">
  23. Your text goes here
  24. </div>
  25. <!-- Ends status part -->
  26.  
  27. <!-- Starts music part -->
  28. <a href="#" class="fringe" title="music"><span class="iconicfill-headphones"></span></a>
  29. <div class="mwah">
  30. <div style="width: 110px; overflow: hidden;">
  31. Paste here the code of your music player!
  32. </div>
  33. <p>1. Song name
  34. <br>2. Song name
  35. <br>3. Song name
  36. </div>
  37. <!-- Ends music part -->
  38.  
  39. <!-- Starts more part -->
  40. <a href="#" class="fringe" title="more"><span class="iconicfill-book-alt"></span></a>
  41. <div class="mwah">
  42. Your text goes here
  43. </div>
  44. <!-- Ends more part -->
  45.  
  46. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement