Guest User

Untitled

a guest
Apr 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $(this).parent().find(this.attr("tagName").toLowerCase())
  2.  
  3. $('p:eq(0)').parents().each(function() {
  4. var el = $(this).find( $(this).attr('tagName').toLowerCase() );
  5. if ( el.length ) {
  6. console.log(el);
  7. }
  8. });
Add Comment
Please, Sign In to add comment