Dual licensed under the MIT and GPL licenses.
Read more: Introducing “mini”
Usage:
var pAnchors = mini('p > a'); // Returns an array.
for (var i = 0, l = pAnchors.length; i < l; ++i) {
// Do stuff...
}
Supported Selectors:
tag
tag > .className
tag > tag
#id > tag.className
.className tag
tag, tag, #id
tag#id.className
.className
span > * > b