I\'m looking for a way to round up a number to the next closest multiple of 250. So for example if I had the following JS:
var containerHeight = $(\"#container\
containerHeight = Math.ceil(containerHeight / 250.0) * 250;