I have my function to resize,
function resizeGrid() {
$(".divGrid").css("height", ($(document).height() - 325) + "px");
}
$(resizeGrid);
It works as I would like, but when testing in the browser, I always have to give f5 so that it works, how do I make it when it releases the mouse button after resize, call this function?