New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ender-quarky

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ender-quarky

A tiny DOM utility for ender

  • 0.4.25
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Ender-Quarky 0.4.25

Ender-Quarky is a DOM utility designed to work with ender. It aims to be small and only handles common tasks.

$('#foo').html("<p>I'm a new paragraph!</p>").css('color','red').addClass('bar');

Here's the complete API:

  • css(name) : get a CSS property
  • css(name,value) : set a CSS property
  • css(object) : set a CSS property list
  • getComputedStyle(name,clean) : returns the computed style of one node, the name must be hyphenated (CSS syntax), if you want to have a number as the returned value set clean to true (optional)
  • html() : get HTML contents
  • html(string) : set HTML contents
  • text() : get text contents
  • text(string) : set text contents
  • attr(name) : get an attribute
  • attr(name,value) : set an attribute
  • data() : get the node's data attribute list
  • data(name) : get a data attribute
  • data(name,value) : set a data attribute
  • data(object) : set a data attribute list
  • val() : get the value
  • val(string) : set the value
  • append(node) : append a node to the container
  • prepend(node) : prepend a node to the container
  • before(node) : add a node before it
  • after(node) : add a node after it
  • remove() : remove the node
  • parent() : get the parent node
  • previous() : get the previous node
  • next() : get the next node
  • children() : get node's children
  • addClass(string) : add a class
  • removeClass(string) : remove a class
  • hasClass(string) : verify if the class exist for that node
  • width() : get the width
  • width(value) : set the width (shortcut to css('width',value))
  • height() : get the height
  • height(value) : set the height (shortcut to css('height',value))
  • top() : get the top offset
  • top(value) : set the top offset (shortcut to css('top',value))
  • bottom() : get the bottom offset
  • bottom(value) : set the bottom offset (shortcut to css('bottom',value))
  • left() : get the left offset
  • left(value) : set the left offset (shortcut to css('left',value))
  • right() : get the right offset
  • right(value) : set the right offset (shortcut to css('right',value))
  • scrollTop() : get the scrollTop property
  • scrollTop(value) : set the scrollTop property
  • scrollLeft() : get the scrollLeft property
  • scrollLeft(value) : set the scrollLeft property
  • clone() : clone the node
  • on(event,callback) : add one or a list of events (like change mouseout click); return true to propagate the event

License

Quarky is published under the MIT license.

Keywords

FAQs

Package last updated on 20 Sep 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