Created
July 30, 2014 04:26
-
-
Save dstyle0210/61a037228137a0e4b291 to your computer and use it in GitHub Desktop.
윈도우 높이와 문서의 높이를 비교하여 큰것을 리턴.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //jQuery Extend dHeight : dstyle | |
| // 윈도우 높이와 문서의 높이를 비교하여 큰것을 리턴. | |
| (function($){$.windowHeight = function(){return (($(window).height()>$(document.body).height())?$(window).height():$(document.body).height());};})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment