954,561 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Help using JavaScript and CSS together

I am very new to JavaScript and am trying to use JavaScript to determine the height of a div. The div starts in the middle of the browser window and I need it to extend to the bottom of the window. How can the window height be determined and used to accomplish this?

Thanks in advance!

Justin

justinkb88
Newbie Poster
3 posts since Jan 2012
Reputation Points: 10
Solved Threads: 0
 

Look at using jQuery.

stbuchok
Master Poster
730 posts since May 2011
Reputation Points: 120
Solved Threads: 93
 

Thanks for the suggestion. I have looked into jQuery today and can use it to find the window and div height, but how can I account for the offset for a centered div?

justinkb88
Newbie Poster
3 posts since Jan 2012
Reputation Points: 10
Solved Threads: 0
 

divide by 2 (half the width of the div)

div.left = (window.width / 2) - (div.width / 2)

That should center the div (you'll want this to happen on the resize event as well).

stbuchok
Master Poster
730 posts since May 2011
Reputation Points: 120
Solved Threads: 93
 

Thanks for leading me in the right direction! I got everything working correctly.

justinkb88
Newbie Poster
3 posts since Jan 2012
Reputation Points: 10
Solved Threads: 0
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: