Home › Forums › JavaScript › Make a Div height always round to an even number… › Reply To: Make a Div height always round to an even number…
March 10, 2015 at 7:34 am
#197806
Participant
Might be neat to use modulus here, something like :
function adaptSize() {
if (itemheight%2 == 0) return;
itemheight = itemheight+1;
}
Very generally speaking of course…