I have a div that I would like to be able to resize from the top of it and increase/decrease its height. I have found a ton of ways on the internet that people are using to do this, but for some reason, nothing works for mine. I can get the double headed arrow to show up, but no part of my div or it's children will move. Here are some things I have tried:
$('#header').mousedown(function(){
$('#container').resizable({
handles: 'n, s'
});
});
I have also used this:
$container-results.resizable({ handles: 'n, e, s, w, ne, se, sw, nw' });
and this
$("#container").resizable({ handles: 'n' });
var handles = $("#container").resizable("option", "handles");
$("#container").resizable("option", "handles", 'n')
and in CSS I tried
resize: vertical
and a couple of other ways, but nothing will make it resize! Help would be appreciated.
here is a simple jsfiddle example: http://jsfiddle.net/TCHdevlp/zpD2R/
I found jsfiddles that both have resizable containers at the bottom of the page as well.
this may help explain what I am looking for.