Skip to content
This repository has been archived by the owner on Dec 16, 2023. It is now read-only.

Commit

Permalink
Fix links to sizzle.js
Browse files Browse the repository at this point in the history
  • Loading branch information
assaf committed Oct 19, 2012
1 parent 61572e1 commit 2176d02
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
3 changes: 1 addition & 2 deletions README.md
Expand Up @@ -200,8 +200,7 @@ Here are a few examples for checking the contents of a document:
CSS selectors are implemented by Sizzle.js. In addition to CSS 3 selectors you
get additional and quite useful extensions, such as `:not(selector)`,
`[NAME!=VALUE]`, `:contains(TEXT)`, `:first/:last` and so forth. Check out the
[Sizzle.js documentation](https://github.com/jeresig/sizzle/wiki) for more
details.
[Sizzle.js documentation](http://sizzlejs.com/) for more details.

Read more [on the Browser API](API) and [CSS selectors](selectors)

Expand Down
7 changes: 3 additions & 4 deletions doc/API.md
Expand Up @@ -127,10 +127,9 @@ To find out all the even rows in a table:

var rows = table.querySelectorAll("tr:even");

CSS selectors support is provied by
[Sizzle.js](https://github.com/jeresig/sizzle/wiki), the same engine used by
jQuery. You're probably familiar with it, if not, check the [list of supported
selectors](selectors).
CSS selectors support is provied by [Sizzle.js](http://sizzlejs.com/), the same
engine used by jQuery. You're probably familiar with it, if not, check the
[list of supported selectors](selectors).

### browser.body : Element

Expand Down
5 changes: 2 additions & 3 deletions doc/selectors.md
Expand Up @@ -2,9 +2,8 @@ zombie.js-selectors(7) -- CSS Selectors
=======================================


Zombie.js uses [Sizzle.js](https://github.com/jeresig/sizzle/wiki) which
provides support for most [CSS 3
selectors](http://www.w3.org/TR/css3-selectors/) with a few useful
Zombie.js uses [Sizzle.js](http://sizzlejs.com/) which provides support for most
[CSS 3 selectors](http://www.w3.org/TR/css3-selectors/) with a few useful
extension.

Sizzle.js is the selector engine used in jQuery, so if you're familiar
Expand Down

0 comments on commit 2176d02

Please sign in to comment.