A wrapper library around Facebook's FBJS, which will provide a jQuery-like interface for working with FBML.
The library provides some of the most common jQuery featues:
- CSS selectors/pseudo selectors: (ex: $("#menu div.item:even"))
- Chaining: (ex: $(...).css(...).css(...).attr(...).click(...))
- Effects: (ex: $(...).slideDown(1000))
- Events: (ex: $(...).click(function(event) {...}))
An html parser was also added to work around the FBJS setInnerXHTML deficiencies. So, the $(...).html(...) method is more flexible than the FBJS provided equivalent (setInnerXHTML).
Cheatsheet/Rough documentation
New in v0.2:
- Added FBjqRY.min.js -- this is a minified Utility and FBjqRY and doesn't hit the 64K post FB mangling
- Added: prepend, prependTo, and after methods
- Bug fixes