fd-setattr
v1.0.0
Published
Add or change the attributes of a DOM element in functional way.
Readme
fd-setattr
Add or change the attributes of a DOM element in a functional way.
Installation
npm install fd-setattr --save
Usage
let setattr = require('fd-setattr');
let hide = setattr('hidden', true);
hide(img);
API
setAttr :: name -> value -> elemA curried function that takes in:
name -> Name of the attribute.
value -> Value for the attribute.
elem -> DOM element.
