Guest User

Untitled

a guest
Dec 10th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. var countH2 = 0;
  2. $('.content-page article h2').each(function() {
  3. countH2++;
  4. $(this).attr('id', 'head-'+countH2 );
  5.  
  6. $('.content-article .list').append('<li><i class="icon-correct-symbol"></i><a href="#head-'+countH2+'">'+$(this).text()+'</a></li>');
  7.  
  8. });
Add Comment
Please, Sign In to add comment