Guest User

Untitled

a guest
Jul 23rd, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. $(document).ready(function() {
  2.  
  3. var tabContainers = $("div.tabs div.tabContainer");
  4.  
  5. $("div.tabs ul.tabNavigation a").click(function() {
  6.  
  7. tabContainers.hide().filter(this.hash).show();
  8.  
  9. $("div.tabs ul.tabNavigation a").removeClass("selected");
  10. $(this).addClass('selected');
  11.  
  12. $(".tabContainer").css("opacity","0");
  13.  
  14. $(this).find(".tabContainer").fadeIn("fast", function(){
  15. $(".tabContainer").css("filter","none");
  16. });
  17.  
  18. return false;
  19. }).filter(":first").click();
  20. });
Add Comment
Please, Sign In to add comment