get-style-property
Gets the current value of a style property for a given DOM element.
Last updated 13 years ago by thlorenz .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install get-style-property 
SYNC missed versions from official npm registry.

get-style-property

Gets the current value of a style property for a given DOM element.

browser support

var foo              =  document.querySelector('.foo')
  , getStyleProperty =  require('get-style-property');

// assuming we applied css: ".foo { min-height: 20px }"

console.log(getStyleProperty(foo, 'min-height')); // => 20px

API

/**
 * Gets the current value of a style property for a given DOM element.
 *
 * @function
 * @param el {Object} The DOM element.
 * @param propName {String} The name of the property.
 * @return {String} The current value of the element's style and given property. 
 */
getStyleProperty(el, propName)

Current Tags

  • 0.1.1                                ...           latest (13 years ago)

2 Versions

  • 0.1.1                                ...           13 years ago
  • 0.1.0                                ...           13 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (0)
None
Dev Dependencies (2)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |