ここで、上記のクエリのビンを作成しました。デモリンクもあります。
デモ: http ://codebins.com/bin/4ldqp9d
HTML:
<ul id="active-tasks">
<li>
<div class="mobile-handle">
Mobile-1
</div>
</li>
<li>
<div class="mobile-handle">
Mobile-2
</div>
</li>
<li>
<div class="mobile-handle">
Mobile-3
</div>
</li>
<li>
<div class="mobile-handle">
Mobile-4
</div>
</li>
</ul>
CSS:
#active-tasks{
padding:4px;
border:1px solid #445599;
list-style:none;
width:50%;
background:#f9c8c5;
}
#active-tasks li{
height:30px;
}
JQuery:
$(function() {
$(".mobile-handle").height($(".mobile-handle").parent('li').height());
/*
//Another Alternate way is:
$(".mobile-handle").height( $(".mobile-handle").closest('li').height() );*/
});
デモ: http ://codebins.com/bin/4ldqp9d