How to find the height of you're webpage using JQuery?
|
|
|
|
|
Question: How to find the height of your web page using JQuery? Answer: $(document).ready(function() { var height = $('body').height(); alert(height) }); NOTE: Remember to include the JQuery library file.
|