Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. $('element_to_add',this).val();
  2.  
  3. $(this).find("img"); // any img tag child or grandchild etc...
  4. $(this).children("img"); //any img tag child that is direct descendant
  5. $(this).find("img:first") //any img tag first child or first grandchild etc...
  6. $(this).children("img:first") //the first img tag child that is direct descendant
  7. $(this).children("img:nth-child(1)") //the img is first direct descendant child
  8. $(this).next(); //the img is first direct descendant child
  9.  
  10. $("#"+$(this).attr("id")+" img:first")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement