Skip to content

Instantly share code, notes, and snippets.

@lzl124631x
Created August 14, 2016 01:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lzl124631x/c1bbaae564be38b0429493416115136b to your computer and use it in GitHub Desktop.
Save lzl124631x/c1bbaae564be38b0429493416115136b to your computer and use it in GitHub Desktop.
get percentage css value from element
$.fn.pureCss = function (css) {
var $dummy = this.parent().clone().appendTo('body').hide();
var ret = $dummy.find(this.selector).css(css);
$dummy.remove();
return ret;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment