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

domq.js

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

domq.js

A modular DOM manipulation library.

  • 0.7.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
19K
increased by0.62%
Maintainers
1
Weekly downloads
 
Created
Source

Domq

Travis npm license

Domq is a modular DOM manipulation library. It's built according to Zepto.js.

Who uses it?

Installation

$ npm install domq.js --save

There have four files in dist after build.

dist
├── domq.js (UMD)
├── domq.common.js (CJS)
├── domq.esm.js (ESM)
└── domq.modular.js (MODULAR)

It's used domq.modular.js by default.

import { D } from 'domq.js';

Or you can also import the other file as needed.

import { D } from 'domq.js/dist/domq.esm.js';

Modular Usage

You should put the methods as needed on D function manually.

import { D, isArray, addClass } from 'domq.js/src/domq.modular';

// Static methods
const methods = {
  isArray,
};

// Instance methods
const fnMethods = {
  addClass,
};

D.extend(methods);
D.fn.extend(fnMethods);

API

Instance methods

  • D().css()
  • D().attr()
  • D().removeAttr()
  • D().prop()
  • D().removeProp()
  • D().hasClass()
  • D().addClass()
  • D().removeClass()
  • D().toggleClass()
  • D().offset()
  • D().offsetParent()
  • D().position()
  • D().scrollTop()
  • D().scrollLeft()
  • D().width()
  • D().height()
  • D().remove()
  • D().empty()
  • D().clone()
  • D().html()
  • D().text()
  • D().append()
  • D().prepend()
  • D().after()
  • D().before()
  • D().replaceWith()
  • D().appendTo()
  • D().prependTo()
  • D().insertAfter()
  • D().insertBefore()
  • D().replaceAll()
  • D().find()
  • D().filter()
  • D().has()
  • D().not()
  • D().is()
  • D().add()
  • D().contents()
  • D().closest()
  • D().parents()
  • D().parent()
  • D().children()
  • D().siblings()
  • D().prev()
  • D().next()
  • D().index()
  • D().wrap()
  • D().wrapAll()
  • D().wrapInner()
  • D().unwrap()
  • D().val()
  • D().one()
  • D().on()
  • D().off()
  • D().trigger()
  • D().triggerHandler()
  • D().animate()
  • D().anim()
  • D().show()
  • D().hide()
  • D().toggle()
  • D().fadeTo()
  • D().fadeIn()
  • D().fadeOut()
  • D().fadeToggle()

Static methods

  • D.type()
  • D.contains()
  • D.camelCase()
  • D.isFunction()
  • D.isWindow()
  • D.isEmptyObject()
  • D.isPlainObject()
  • D.isNumeric()
  • D.isArray()
  • D.inArray()
  • D.trim()
  • D.grep()
  • D.noop()
  • D.Event()
  • D.proxy()

License

MIT License

Keywords

FAQs

Package last updated on 25 Nov 2023

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