Advertisement
Guest User

Untitled

a guest
May 7th, 2015
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. $('.thumb').each(function (i) {
  2. $(this).click(function () {
  3. alert (i+1); //index starts with 0, so add 1 if you want 1 first
  4. });
  5. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement