0 purchases
dquery
DQuery #
DQuery is a porting of jQuery in Dart.
API Reference
Git Repository
Discussion
Issues
Install from Dart Pub Repository #
Include the following in your pubspec.yaml:
dependencies:
dquery: any
copied to clipboard
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
copied to clipboard
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);
copied to clipboard
It implements List
$('.active')[0];
$('.active').isEmpty;
for (Element e in $('.active')) { ... }
copied to clipboard
Create another query object with traversing API, including find, closest, parent, children.
$('.active').closest('ul');
$('#myDiv').find('a.btn');
copied to clipboard
Manipulate selected elements.
$('.active').removeClass('active');
$('.fade').hide();
copied to clipboard
Register event handlers on queried elements, or trigger an event by API.
$('#myBtn').on('click', (QueryEvent e) {
...
});
$('#myBtn').trigger('click', data: 'my data');
copied to clipboard
There are query objects of Document and Window too.
Query $doc = $document();
Query $win = $window();
copied to clipboard
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.
Who Uses #
Quire - a simple, collaborative, multi-level task management tool.
Keikai - a sophisticated spreadsheet for big data
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.