kassens / slick forked from subtleGradient/slick
- Source
- Commits
- Network (7)
- Downloads (0)
- Wiki (1)
- Graphs
-
Tree:
f05309d
commit f05309dd43cf63d4ef16b8e27f8ef2704da79665
tree e95bb3d997059ff4ca306e061d9e484d807a4bba
parent 067883c647fdf73832465e4a6ba1e43a3d0c8b59
tree e95bb3d997059ff4ca306e061d9e484d807a4bba
parent 067883c647fdf73832465e4a6ba1e43a3d0c8b59
slick /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Sat Oct 10 16:08:55 -0700 2009 | |
| |
3rd-party-tests/ | Mon Aug 17 14:12:32 -0700 2009 | |
| |
README.md | Tue Sep 15 10:21:43 -0700 2009 | |
| |
slick.js | ||
| |
slick.tmproj | Sun Jun 14 20:43:46 -0700 2009 | |
| |
speed/ | ||
| |
test/ |
README.md
MooTools Slick Selector Engine
A new standalone selector engine that is totally slick!
Create your own custom pseudo-classes!
Ever want to make your own :my-widget(rocks) pseudoclass? Now you can!
Use your own custom getAttribute code!
EG: Use MooTool's Element.get method or jQuery's $.attr
Use your own parser!
Want to support XPATH selectors? JSONPath selectors? Pre-cached JS Object selctors? Just swap out the default parser and make your own.
Use the parser by itself!
Want to integrate a CSS3 Selector parser into your own app somehow? Use the slick selector CSS3 parser by itself and get a JS Object representation of your selector.
MooTools Slick CSS Selector Parser
Parse a CSS selector string into a JavaScript object
Object format
{
Slick: true,
reverse: function(){},
simple: false,
length: 1,
raw: "tag#id.class[attrib][attrib=attribvalue]:pseudo:pseudo(pseudovalue):not(pseudovalue)",
expressions: [
[
{
parts: [
{ type: "class", value: "class", regexp: /regexp/ },
{ type: "attribute", key: "attrib", test: function(){} },
{ type: "attribute", key: "attrib", value: "attribvalue", operator: "=", test: function(){} },
{ type: "pseudo", key: "pseudo" },
{ type: "pseudo", key: "pseudo", value: "pseudovalue" },
{ type: "pseudo", key: "not" , value: "pseudovalue" }
],
tag: "tag",
id: "id",
classes: [
"class"
],
attributes: [
{ type: "attribute", key: "attrib", value: "", test: function(){} },
{ type: "attribute", key: "attrib", value: "attribvalue", operator: "=", test: function(){} }
],
pseudos: [
{ type: "pseudo", key: "pseudo" },
{ type: "pseudo", key: "pseudo", value: "pseudovalue" },
{ type: "pseudo", key: "not", value: "pseudovalue" }
],
combinator: " "
}
]
]
}

