Advanced
How to structure a custom plugin
Fri, 12/28/2007 - 01:27 — sgroverLearning jQuery has an excellent posting on recommended practices when creating a custom plugin. If you are moving beyond a simple plugin, this post is a great guide.
How to get dynamic content for clueTip popup
Fri, 12/21/2007 - 18:08 — sgroverThe documentation for clueTip is thorough and should be the primary source of information when using clueTip. However there are some topics that are not fully revealed. One such topic is passing dynamic data to an Ajax call, and then modifying the the results when they are retrieved and displayed.
NOTE: All clueTip options are defined at http://plugins.learningjquery.com/cluetip/#options. Please refer to this to learn more about the options used below.
How to use the Ajax powerhouse - $.ajax()
Thu, 12/20/2007 - 23:26 — sgroverAll other jQuery Ajax methods are simply convenient methods to hide the details of how Ajax is done. But with the convenience we loose some capabilities. The $.ajax() method gives those capabilities back to us. Using the $.ajax() method we can even ignore the convenience functions of .load(), .get(), .post(), etc.
