Socket
Socket
Sign inDemoInstall

tsdom

Package Overview
Dependencies
0
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    tsdom

Fast, lightweight JavaScript DOM manipulation utility


Version published
Weekly downloads
91
increased by175.76%
Maintainers
1
Install size
250 kB
Created
Weekly downloads
 

Readme

Source

tsdom

Fast, lightweight DOM manipulation utility with TypeScript definitions. 1.8kb gzipped.

Install

npm install --save tsdom

Setup

Add the package to your project using one of the following:

  • let tsdom = require('tsdom')
  • import tsdom from 'tsdom'
  • <script src="./tsdom.inc.js" /> ("tsdom/dist/tsdom.inc.js")

Usage

TSDom uses CSS (or jQuery) selector syntax, e,g:

  • let el = tsdom(element)
  • let el = tsdom("div")
  • let el = tsdom("#yourId")
  • let el = tsdom(".yourClass")
  • let el = tsdom("[data-attribute]")

API

Once you've selected an element or elements, you can chain the following methods:

  • el.first()
  • el.find("#yourSelector")
  • el.closest(".yourSelector")
  • el.each(e => { // do something })
  • el.append("<p>Lorem ipsum</p>" | Node | HTMLElement)
  • el.prepend("<p>Lorem ipsum</p>" | Node | HTMLElement)
  • el.empty()
  • el.addClass("yourClass")
  • el.removeClass("yourClass")
  • el.toggleClass("yourClass")
  • el.css({ opacity: "0" })
  • el.attr({ title: "Your new title" })
  • el.on("click", (ev: Event, el: HTMLElement) => { // do something })
  • el.on("click", ".yourClass", (ev: Event, el: HTMLElement) => { // do something })
  • el.off("click")

The following are return methods

  • el.get(0)
  • el.hasClass("active")
  • el.val()
  • el.val("value")
  • el.text()
  • el.text("Lorem ipsum")
  • el.data("key")
  • el.data("key", "value")
  • el.attr("key")
  • el.html()
  • el.html("<div>Lorem ipsum</div>")
  • el.toArray()

And these are NON return methods

  • el.remove()

Types

The package exports the following type namespace for use in your app:

  • import tsdom, { TSDom } from 'tsdom'
    • TSDom.Init == tsdom
    • TSDom.Object == tsdom("#yourSelector")

Keywords

FAQs

Last updated on 12 Feb 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc