Make a div clickable by grabbing the 1st link inside the div

   // Make a div clickable by grabbing the 1st link inside the div
    $("#awk-home-deal-clicked").click(function(){
         window.location=$(this).find("a").attr("href");
         return false;
    });
Scroll to Top