Guest User

Untitled

a guest
Sep 19th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. In the DOM, from static HTML:
  2.  
  3. <a class="slide-thumb" data-slide-idx="1" href="#">
  4.  
  5. On page init:
  6.  
  7. $('.slide-thumb').each(function() {
  8. console.log('idx: '+$(this).data('slide-idx'));
  9. });
  10.  
  11. console out put:
  12.  
  13. idx: undefined
Add Comment
Please, Sign In to add comment