Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

apply-selector-and-css

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apply-selector-and-css

Setup id, className, and inline css if needed for and HTMLElement based on a selector. Handy for cases where sometimes css maybe applied from an external file or sometimes from inline.css

  • 1.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

apply-selector-and-css

experimental

Setup id, className, and css for and HTMLElement. Handy for cases where sometimes css maybe applied from an external file or sometimes from inline.css

Usage

NPM

var applySelectorAndCss = require('apply-selector-and-css');

var css =  {
    'div': { width: '100px' },
    '#id': { height: '100px' },
    '.classA.classB': { background: '#F0F' }
};

var apply = applySelectorAndCss(css);

var el1 = document.createElement('div');
var el2 = document.createElement('div');
apply(el1, 'div#id');
apply(el2, '#id2.classSomething')

// el1 would look like this:
// <div id="id" style="width: 100px; height: 100px;"></div>
// 
// el2 would look like this this:
// <div id="id2" class="classSomething"></div>

License

MIT, see LICENSE.md for details.

Keywords

FAQs

Package last updated on 04 May 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc