Guest User

Untitled

a guest
Jun 17th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. $.each($('div.graph'), function() {
  2. var t = $(this).find('h2').text();
  3. var l = $(this).attr('id');
  4. $('#tabs').append('<li><a href="#' + l + '">' + t + '</a></li>');
  5. $(this).find('h2').hide();
  6. });
  7.  
  8.  
  9. // wordt…
  10.  
  11. $('div.graph').each(function() {
  12. var t = $(this).find('h2').text();
  13. var l = $(this).attr('id');
  14. $('#tabs').append('<li><a href="#' + l + '">' + t + '</a></li>');
  15. $(this).find('h2').hide();
  16. });
Add Comment
Please, Sign In to add comment