dquery 0.5.2 copy "dquery: ^0.5.2" to clipboard
dquery: ^0.5.2 copied to clipboard

outdatedDart 1 only

DQuery is a porting of jQuery in Dart.

#DQuery

DQuery is a porting of jQuery in Dart.

##Install from Dart Pub Repository

Include the following in your pubspec.yaml:

dependencies:
  dquery: any

Then run the Pub Package Manager in Dart Editor (Tool > Pub Install). If you are using a different editor, run the command (comes with the Dart SDK):

pub install

To ride with Bleeding Edge of DQuery, use the following configuration in pubspec:

dependencies:
  dquery:
    git: git://github.com/rikulo/dquery.git

For more information, please refer to Pub: Dependencies.

##Usage

You can create a query object by selector. With context provided, the query will be based on different element.

// selects all elements containing 'active' in CSS class
ElementQuery $elems = $('.active');

// selects all descendant elements of div containing 'active' in CSS class
ElementQuery $elems = $('.active', div);

It implements List

$('.active')[0];
$('.active').isEmpty;
for (Element e in $('.active')) { ... }

Create another query object with traversing API, including find, closest, parent, children.

$('.active').closest('ul');
$('#myDiv').find('a.btn');

Manipulate selected elements.

$('.active').removeClass('active');
$('.fade').hide();

Register event handlers on queried elements, or trigger an event by API.

$('#myBtn').on('click', (DQueryEvent e) {
	...
});
$('#myBtn').trigger('click', data: 'my data');

There are query objects of HtmlDocument and Window too.

DocumentQuery $doc = $document();
WindowQuery $win = $window();

Check the API reference for more features.

##Comparison to jQuery

See here.

##Notes to Contributors

###Test and Debug

You are welcome to submit bugs and feature requests. Or even better if you can fix or implement them!

###Fork DQuery

If you'd like to contribute back to the core, you can fork this repository and send us a pull request, when it is ready.

Please be aware that one of Rikulo's design goals is to keep the sphere of API as neat and consistency as possible. Strong enhancement always demands greater consensus.

If you are new to Git or GitHub, please read this guide first.

2
likes
0
pub points
63%
popularity

Publisher

verified publisherquire.io

DQuery is a porting of jQuery in Dart.

Homepage

License

unknown (LICENSE)

Dependencies

browser, meta, rikulo_commons

More

Packages that depend on dquery