Advertisement
abuiyad

Tabbed Sidebar Widget in Blogger HTML

Jan 1st, 2015
2,008
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.25 KB | None | 0 0
  1. <!-- Tab Widget [start] -->
  2. <div class='tabviewsection'>
  3. <script type='text/javascript'>
  4.   jQuery(document).ready(function($){
  5.                 $(".tabs-widget-content-widget-themater_tabs-1432447472-id").hide();
  6.                 $("ul.tabs-widget-widget-themater_tabs-1432447472-id li:first a").addClass("tabs-widget-current").show();
  7.                 $(".tabs-widget-content-widget-themater_tabs-1432447472-id:first").show();
  8.      
  9.                 $("ul.tabs-widget-widget-themater_tabs-1432447472-id li a").click(function() {
  10.                     $("ul.tabs-widget-widget-themater_tabs-1432447472-id li a").removeClass("tabs-widget-current a");
  11.                     $(this).addClass("tabs-widget-current");
  12.                     $(".tabs-widget-content-widget-themater_tabs-1432447472-id").hide();
  13.                     var activeTab = $(this).attr("href");
  14.                     $(activeTab).fadeIn();
  15.                     return false;
  16.                 });
  17.             });      
  18.  </script>
  19. <ul class='tabs-widget tabs-widget-widget-themater_tabs-1432447472-id'>
  20.   <li class='about_tab'><a href='#widget-themater_tabs-1432447472-id1'>About</a></li>
  21.   <li class='tags_tab'><a href='#widget-themater_tabs-1432447472-id2'>Tags</a></li>
  22.   <li class='laster'><a href='#widget-themater_tabs-1432447472-id3'>Popular</a></li>
  23. </ul>
  24. <!-- Tab Widget 1 -->
  25. <div class='tabs-widget-content tabs-widget-content-widget-themater_tabs-1432447472-id' id='widget-themater_tabs-1432447472-id1'>
  26. <b:section class='sidebar' id='sidebartab1' preferred='yes'>
  27.  </b:section>                                    
  28. </div>
  29.                        
  30. <!-- Tab Widget 2 -->              
  31. <div class='tabs-widget-content tabs-widget-content-widget-themater_tabs-1432447472-id' id='widget-themater_tabs-1432447472-id2'>
  32. <b:section class='sidebar' id='sidebartab2' preferred='yes'>
  33.  
  34.  </b:section>                                      
  35. </div>                          
  36. <!-- Tab Widget 3 -->                              
  37. <div class='tabs-widget-content tabs-widget-content-widget-themater_tabs-1432447472-id' id='widget-themater_tabs-1432447472-id3'>
  38. <b:section class='sidebar' id='sidebartab3' preferred='yes'>
  39. </b:section>                                      
  40. </div>
  41. </div>
  42. <!-- Tab Widget [endt] -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement