bhalash

Parent and child loop.

Mar 24th, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(function() {
  2.     $('.row').each(function() {
  3.         $(this).children('img').each(function() {
  4.             console.log($(this).width());
  5.         });
  6.     });
  7. });
Advertisement
Add Comment
Please, Sign In to add comment