Guest User

Untitled

a guest
Jan 21st, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <ul>
  2. <li id="tab1">Tab</li>
  3. <li id="tab2">Tab2</li>
  4. <li id="tab3">Tab3</li>
  5. </ul>
  6.  
  7. www.vashsite.ru/uslugi#tab3
  8.  
  9. var anchor = window.location.hash.split('#');
  10.  
  11. <a href="services.html#hygiene"></a>
  12.  
  13. var hash = window.location.hash;
  14. $('.card a').each(function(){
  15. if($(this).attr('href') == hash){
  16. $(this).trigger('click');
  17. }
  18. });
Add Comment
Please, Sign In to add comment