qwery
blazing fast CSS3 query selector engine
Last updated 12 years ago by ded .
Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install qwery 
SYNC missed versions from official npm registry.

Qwery

Qwery is a modern selector engine built on top of querySelectorAll giving you practical utility.

Deprecation Notice!

As of version 4.0, qwery no longer supports IE6 - IE8. If your application still requires this level of support, please see the final 3.x release.

Browser Support

  • IE9+
  • Chrome 1+
  • Safari 3+
  • Firefox 4+

Contexts

Each query can optionally pass in a context

qwery('div', node); // existing DOM node or...
qwery('div', '#foo'); // another query

Dev Env & Testing

npm install
make
open tests/index.html

Ender support

Qwery is the recommended selector engine for Ender. If you don't have Ender, install it, and don't ever look back.

npm install ender -g

Include qwery into your package.json

{
  "dependencies": {
    "qwery": "x.x.x"
  }
}

Ender bridge additions

// the context finder - find all p elements descended from a div element
$('div').find('p')

// join one set with another
$('div').and('p') // equal to $('div,p')

Recommended sibling modules

In most cases, if you're hunting for a selector engine, you probably want to pair Qwery with a DOM module. In that case qwery pairs quite nicely with Bonzo (a DOM util) and Bean (an event util). Add them to your Ender installation as such:

ender build qwery bean bonzo

Then write code like a boss:

$('<p>hello world</p>')
  .css({
    color: 'red',
    background: 'white'
  })
  .after('√')
  .bind({
    'click.button': function () {
      $(this).hide().unbind('click.button')
    }
  })
  .appendTo('body')

Giving back

Are you using this library in production? Consider leaving a tip to show your appreciation.

Current Tags

  • 4.0.0                                ...           latest (12 years ago)

57 Versions

  • 4.0.0                                ...           12 years ago
  • 3.4.2                                ...           12 years ago
  • 3.4.1                                ...           13 years ago
  • 3.4.0                                ...           13 years ago
  • 3.3.11                                ...           14 years ago
  • 3.3.10                                ...           14 years ago
  • 3.3.9                                ...           14 years ago
  • 3.3.8                                ...           14 years ago
  • 3.3.7                                ...           14 years ago
  • 3.3.6                                ...           14 years ago
  • 3.3.5                                ...           14 years ago
  • 3.3.4                                ...           14 years ago
  • 3.3.3                                ...           14 years ago
  • 3.3.2                                ...           14 years ago
  • 3.3.1                                ...           14 years ago
  • 3.3.0                                ...           14 years ago
  • 3.2.2                                ...           14 years ago
  • 3.2.1                                ...           14 years ago
  • 3.2.0                                ...           14 years ago
  • 3.1.1                                ...           14 years ago
  • 3.0.0                                ...           14 years ago
  • 2.2.9                                ...           14 years ago
  • 2.2.8                                ...           14 years ago
  • 2.2.7                                ...           15 years ago
  • 2.2.6                                ...           15 years ago
  • 2.2.5                                ...           15 years ago
  • 2.2.4                                ...           15 years ago
  • 2.2.3                                ...           15 years ago
  • 2.2.2                                ...           15 years ago
  • 2.2.1                                ...           15 years ago
  • 2.2.0                                ...           15 years ago
  • 2.1.2                                ...           15 years ago
  • 2.1.1                                ...           15 years ago
  • 2.1.0                                ...           15 years ago
  • 2.0.0                                ...           15 years ago
  • 1.2.7                                ...           15 years ago
  • 1.2.6                                ...           15 years ago
  • 1.2.5                                ...           15 years ago
  • 1.2.4                                ...           15 years ago
  • 1.2.3                                ...           15 years ago
  • 1.2.2                                ...           15 years ago
  • 1.2.1                                ...           15 years ago
  • 1.2.0                                ...           15 years ago
  • 1.1.9                                ...           15 years ago
  • 1.1.8                                ...           15 years ago
  • 1.1.7                                ...           15 years ago
  • 1.1.6                                ...           15 years ago
  • 1.1.5                                ...           15 years ago
  • 1.1.4                                ...           15 years ago
  • 1.1.3                                ...           15 years ago
  • 1.1.2                                ...           15 years ago
  • 1.1.1                                ...           15 years ago
  • 1.1.0                                ...           15 years ago
  • 1.0.5                                ...           15 years ago
  • 1.0.4                                ...           15 years ago
  • 1.0.2                                ...           15 years ago
  • 1.0.1                                ...           15 years ago
Maintainers (2)
Downloads
Today 0
This Week 1
This Month 56
Last Day 0
Last Week 55
Last Month 4
Dependencies (0)
None
Dev Dependencies (4)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |