Here is my JQuery:
$(window).load(function(){
$(".mobile-handle").css({height: $("ul#active-tasks li").height()});
})
Here is my view code:
%li.task.clearfix[task]
.mobile-handle
I am trying to set the height of the .mobile-handle to the height of the parent li. Still learning JS/Jquery so sorry I know this is elementary.
This sets the height of each
.mobile-handleto the height of its ancestorli