Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

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…

#197806
Shikkediel
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…