Skip to content

Instantly share code, notes, and snippets.

@Restoration
Created June 11, 2016 05:49
Show Gist options
  • Select an option

  • Save Restoration/8413171d51bce756df1e7135e6d4692e to your computer and use it in GitHub Desktop.

Select an option

Save Restoration/8413171d51bce756df1e7135e6d4692e to your computer and use it in GitHub Desktop.
jQueryでTop取得
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