shoyebzz

Find a closest closest elemnt

Dec 4th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery(".teaser-box2 img").click(function(event){
  2. //var hrefval= (clicked element).closest(its can be parent or child).find(find a element in the closest element);
  3.   var hrefval = jQuery(this).closest('.teaser-box2').find(".content-wrapper > a").attr("href");
  4.   window.location.href = hrefval;
  5. });
Advertisement
Add Comment
Please, Sign In to add comment