Created
June 11, 2016 05:49
-
-
Save Restoration/8413171d51bce756df1e7135e6d4692e to your computer and use it in GitHub Desktop.
jQueryでTop取得
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(function($){ | |
| //Get targetBox top | |
| var targetBox = $('#targetBox').css('top').replace('px',''); | |
| //Format num | |
| var targetBox = parseInt(targetBox,10); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment