Guest User

Untitled

a guest
Jun 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. ##html
  2.  
  3. <ul>
  4. <li><a href="javascript:;" rel="web" class="trigger">Web</a></li>
  5. </ul>
  6.  
  7. <div class="port" id="port-web">
  8. content
  9. </div>
  10.  
  11. <div class="port" id="port-identity">
  12. other content
  13. </div>
  14.  
  15. ##js
  16.  
  17. $(".trigger").click(function() {
  18. type = $(this).attr("rel");
  19.  
  20. $(".port").fadeOut(200, function() { $("#port-"+type).fadeIn(200); });
  21. });
Add Comment
Please, Sign In to add comment