How do I get jQuery to return the entire
<div class="loan_officer_apply_now_link"><a href="">APPLY NOW!</a></div>
Currently it only returns the contain "a" element
<a href="">APPLY NOW!</a>
Test Code
$('a').click(function(){
alert($('.loan_officer_apply_now_link').html());
})