Selectors in jQuery?
Url:
http://docs.jquery.com/Tutorials:How_to_Get_Anything_You_Want
Description:
Know your way around CSS selectors or maybe xpath too? Then you already know how jQuery works with selectors. You can seriously get anything you want with jQuery's DOM selectors.
jQuery debug plug-in.
Url:
http://jquery.glyphix.com/
Description:
jQuery plugin for debugging from glyphix.com. Works with the Firebug console or prints directly into the end of your pages.
Include it into your project by using drupal_add_js('/path/to/jquery.debug.js') then chain a ".debug()" where ever an object is returned. e.g. $('div').filter('.hello').debug(); or get a quick glance at your variables with $.log(myVariable);.


































