Wrote this code to be able to resize a div vertically, I'm having issues finding a good way to limit my height to a minimum and maximum value, each solution I've written all has the same issue, it's very inaccurate. Please don't suggest jQuery UI, I want my own code to have more control over it incase I want to add more to it that doesn't exist already at jQuery UI.
$(document).ready(function()
{
var resize = false;
var chat = $("#chat").height();
$(document).mouseup(function(event)
{
resize = false;
chat = $("#chat").height();
});
$(".resize").mousedown(function(event)
{
resize = event.pageY;
console.log($(".resize").offset().top);
console.log(event.pageY);
});
$(document).mousemove(function(event)
{
if (resize)
{
console.log(parseInt(resize)-event.pageY);
$("#chat").height(chat + resize - event.pageY);
}
});
});