Guest User

Untitled

a guest
Jul 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(function(){
  2.   //struktura menu je vidět na webu, v podstatě se ale načtou všechny div-y v #menu do pole
  3.   $('#menu div').each(function(){
  4.     var that = $(this);
  5.     that[ that.children().attr( 'href' ) === hash ? 'addClass' : 'removeClass' ]( 'active' );
  6.   });
  7. });
Add Comment
Please, Sign In to add comment