vote up 2 vote down star

I would like to do a jquery function that when window resize, it search div with css-class name "taskbox" and set the max-height to the parent div height - current offset for the taskbox to be able to be smaller than the available space but do not extend it.

flag

64% accept rate

2 Answers

vote up 2 vote down

You might try looking for an existing solution (jQuery has an immense plug-in community):

At the very least this will get you started.

link|flag
I found this answer too with googling, its too bad its not even close to what the questioner is asking for... – jfar Mar 11 at 1:38
How is this not close? Look at the code for that plugin and you'll notice that it's got code that normalizes the height of divs. Enough to get started, as I said. – thenduks Mar 11 at 2:59
The question was about setting a height relative to the browser window height, you posted about a script that sets heights, missing a key part of the problem. "Enough to get you started" isn't an answer and shouldn't be worth any points. – jfar Mar 11 at 15:27
Lucky for me, then, that you aren't 'the decider' on what deserves points. Not that I'm especially attached to 'points'... I don't really care. To prove it, I'll mod myself down, just for you. I yield to your superior answer to this question... oh wait, you didn't write one. – thenduks Mar 11 at 19:33
Oh right, turns out you can't mod your own answer down. Ah well, my point is made. – thenduks Mar 11 at 19:35
show 2 more comments
vote up 3 vote down

I'm not certain exactly what you're trying to do, but to get all the elements that contain an element that has the taskbox class you can use:

$(":has(.taskbox)").height(300);

This will adjust the height of all those elements. To adjust the height of all the taskboxes based on the height of the parent element on window resize you can do something like this:

$(window).resize(function() {
  var parent = $(".taskbox");
  $(".taskbox").each(function() {
    $(this).height($(this).parent().height() - 50);
  });
});

Keep in mind that the parent elements will need to have height specified in order for this to work well. You can get the height of the window with:

$(window).height();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.