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);
        }
    });
});
link|improve this question
This seems like a trivial math problem, no? – Ilia G Feb 12 at 2:00
It seems I've just managed to solve it myself, pretty sure it can be optimized but works for what I intended for it. Not sure where to post my updated code, in my old question or in an answer to my question? Thanks anyhow! – Henrik Feb 12 at 2:16
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.