bhalash

Selector for parent.

Jun 12th, 2014
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $('p > a').each(function() {
  2.     if ($(this).children('img').length > 0) {
  3.         $(this).hover(function() {
  4.             $(this).css('border-style', 'none');
  5.         });
  6.     }
  7. });
Advertisement
Add Comment
Please, Sign In to add comment