Guest User

Untitled

a guest
Dec 17th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <!DOCTYPE 5>
  2.  
  3. <html>
  4.  
  5. <head>
  6. <title>This is a webpage</title>
  7. <script src="jquery.js">
  8. </script>
  9.  
  10. <script>
  11. $(function(){
  12. $('.fond_show').hide();
  13.  
  14. $('.bolag_show').bind('click',function() {
  15. $('.fond_show').show();
  16. });
  17. });
  18. </script>
  19. </head>
  20.  
  21. <body>
  22. <div id="main_section">
  23. <div id="fondlista">
  24. <h1>Svenska Fonder</h1>
  25. <a href="#" class="bolag_show"></dt>Aktie-Ansvar AB</dt></a>
  26.  
  27. <div class="fond_show">Aktie-Ansvar Avkastningsfond</div>
  28. </div>
  29. </div>
  30. </body>
  31.  
  32. </html>
Add Comment
Please, Sign In to add comment