javascript - JSjQuery How to get height of dynamic (responsive) div? - Stack Overflow

I have not been able to find an answer that works for me on SO.Basically I have a div with an image tha

I have not been able to find an answer that works for me on SO.

Basically I have a div with an image that has fixed positioning. It is responsive and will shrink or grow to whatever the screen size is.

What I want to do is get the height anytime the screen size changes and input it as a positioning value for another div so that it there is no overlapping (due to the fixed positioning).

I can get the height initially but it never changes after the first value when the screen is being resized.

quick demo up here: link

look in console to see height being returned. notice that it doesn't change when browser is resized.

JS

$(function(){

    var explore = $('#explore').height();
    console.log(explore);

    $( window ).on("resize", function() {
    console.log(explore);
    });

});

I've also tried .css("height") but that didn't fix the issue.

*note the div does not have fixed positioning on this example since it would make the layout more confusing

I have not been able to find an answer that works for me on SO.

Basically I have a div with an image that has fixed positioning. It is responsive and will shrink or grow to whatever the screen size is.

What I want to do is get the height anytime the screen size changes and input it as a positioning value for another div so that it there is no overlapping (due to the fixed positioning).

I can get the height initially but it never changes after the first value when the screen is being resized.

quick demo up here: link

look in console to see height being returned. notice that it doesn't change when browser is resized.

JS

$(function(){

    var explore = $('#explore').height();
    console.log(explore);

    $( window ).on("resize", function() {
    console.log(explore);
    });

});

I've also tried .css("height") but that didn't fix the issue.

*note the div does not have fixed positioning on this example since it would make the layout more confusing

Share Improve this question asked Jun 12, 2014 at 18:24 John_911John_911 1,1804 gold badges22 silver badges38 bronze badges 2
  • 5 explore will only have the value at the time you define it, you need to check it's size inside the resize handler – charlietfl Commented Jun 12, 2014 at 18:26
  • Bingo! I knew it was something simple. If you post as an answer I'll accept! Thanks – John_911 Commented Jun 12, 2014 at 18:29
Add a ment  | 

2 Answers 2

Reset to default 8

You are not modifying explore:

Change it as follows:

$(function(){

    var explore = $('#explore').css("height");
    console.log(explore);

    $( window ).on("resize", function() {
       explore = $('#explore').css("height");
       console.log(explore);
    });

});

You need to add a resize listener to the window like so:

function repositionDivOnResize() {
 // this is where you'll dynamically reposition your element
}

$(window).on("resize", repositionDivOnResize)

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743703475a4492968.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信