I have my markup as follows:
Sheds & Housing
<
A better one (No padding div required!)
Try with this jsfiddle. Its working perfectly for me.
Highlights of this fiddle:
Code below.
$(document).ready(function(){
//apply height change while clicking on last link only
$("ul.sub_navi li a:last").click(function(){
var $targ= $($(this).attr("href"));
if($targ.height() < $(window).height()){
$targ.css('min-height', $(window).height())
}
});
});