1.0.1 • Published 5 years ago

dominger v1.0.1

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

About Dominger

  • "Dominger" keeps the fields you want to hide from the user without showing them to the user. :lock:
  • Creates a fast and usable flow structure using local storage :floppy_disk:
  • No jQuery and Library :x: ONLY PURE JAVASCRIPT :heavy_check_mark:

How to Install

NPM : npm i dominger

How to Work

FunctionDescriptionExample Code
clear()Cleans the Local StoreDominger.clear();
hide()Hides the specified area(s)Dominger.hide();
show()Indicates the specified area(s)Dominger.show();

Parameters

clear()

Parameters not available yet

Dominger.clear();

hide()

Parameters ("identity-name", "class or id")

Dominger.hide('special-name', '#hidd');

FOR IF MULTIPLE CLASS ANY

("identity-name", "class or id", 'multi')

Dominger.hide('special-name', '.hidd-class', 'multi');

show()

Parameters ("identity-name", "class or id")

Dominger.show('special-name', '#hidd');

FOR IF MULTIPLE CLASS ANY

("identity-name", "class or id", 'multi')

Dominger.show('special-name', '.hidd-class', 'multi');

Example Code(s)

For single class or id

Dominger.clear(); // Recommended for use..
Dominger.hide('special-name', '#hidd');
var single = Dominger.show('special-name');
document.body.insertAdjacentHTML('beforeend', single);

For multiple class or id

Dominger.clear(); // Recommended for use..
Dominger.hide('identity-name', '.hide-div', 'multi');
var multi = Dominger.show('identity-name', 'multi');
for ( var i = 0; i < multi.length; i += 1 ) {
    document.body.insertAdjacentHTML('beforeend', multi[i]);
}