<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -5,13 +5,14 @@
   &lt;meta http-equiv=&quot;Content-type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
   &lt;title&gt;clueTip Plugin Demo&lt;/title&gt;
 
+  &lt;link rel=&quot;stylesheet&quot; href=&quot;../jquery.cluetip.css&quot; type=&quot;text/css&quot; /&gt;
+  &lt;link rel=&quot;stylesheet&quot; href=&quot;demo.css&quot; type=&quot;text/css&quot; /&gt;&lt;/head&gt;
+
   &lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
   &lt;script src=&quot;../lib/jquery.hoverIntent.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
   &lt;script src=&quot;../lib/jquery.bgiframe.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
   &lt;script src=&quot;../jquery.cluetip.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
   &lt;script src=&quot;demo.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
-  &lt;link rel=&quot;stylesheet&quot; href=&quot;../jquery.cluetip.css&quot; type=&quot;text/css&quot; /&gt;
-  &lt;link rel=&quot;stylesheet&quot; href=&quot;demo.css&quot; type=&quot;text/css&quot; /&gt;&lt;/head&gt;
 &lt;body&gt;
 
   &lt;h1 id=&quot;top&quot;&gt;clueTip : A jQuery Plugin&lt;/h1&gt;
@@ -65,7 +66,7 @@
           &lt;div class=&quot;jquery&quot;&gt;View the jQuery&lt;/div&gt;
           &lt;pre&gt;&lt;code&gt;$('h4').cluetip({attribute: 'id', hoverClass: 'highlight'});&lt;/code&gt;&lt;/pre&gt;
         &lt;/li&gt;
-        &lt;li&gt;&lt;strong&gt;local, with arrows&lt;/strong&gt;:  This one uses local content from a hidden &lt;code&gt;div&lt;/code&gt; element and displays an arrow that points to the invoking element: &lt;a class=&quot;load-local&quot; href=&quot;#loadme&quot; rel=&quot;#loadme&quot;&gt;hover for local&lt;/a&gt;
+        &lt;li&gt;&lt;strong&gt;local, with arrows&lt;/strong&gt;:  This one uses local content from a hidden &lt;code&gt;div&lt;/code&gt; element and displays an arrow that points to the invoking element: &lt;a id=&quot;load-local&quot; class=&quot;load-local&quot; href=&quot;#loadme&quot; rel=&quot;#loadme&quot;&gt;hover for local&lt;/a&gt;
           &lt;div class=&quot;html&quot;&gt;View the HTML&lt;/div&gt;
           &lt;pre&gt;&lt;code&gt;&amp;lt;a class=&quot;load-local&quot; href=&quot;#loadme&quot; rel=&quot;#loadme&quot;&amp;gt;&lt;/code&gt;&lt;/pre&gt;
           &lt;div class=&quot;jquery&quot;&gt;View the jQuery&lt;/div&gt;</diff>
      <filename>demo/index.html</filename>
    </modified>
    <modified>
      <diff>@@ -256,13 +256,15 @@ $(document).ready(function() {
            * http://www.gnu.org/licenses/gpl.html&lt;/p&gt;
         &lt;/dd&gt;
         &lt;dt&gt;What versions of jQuery is the clueTip Plugin compatible with?&lt;/dt&gt;
-        &lt;dd&gt;The clueTip Plugin is compatible with jQuery v1.1.3.1 and later. jQuery v1.2.1 or later is recommended.&lt;/dd&gt;
+        &lt;dd&gt;The clueTip Plugin is compatible with jQuery v1.2.6 and later. jQuery v1.3.1 or later is recommended.&lt;/dd&gt;
         &lt;dt&gt;Does the clueTip Plugin have any dependencies on other plugins?&lt;/dt&gt;
         &lt;dd&gt;Only for old version of jQuery. For jQuery versions below 1.2.3, the clueTip plugin depends on the &lt;strong&gt;Dimensions&lt;/strong&gt; plugin for accurate positioning. Otherwise, it is self-contained. &lt;p&gt;&lt;em&gt;Optional&lt;/em&gt; plugins that can be used in conjunction with the clueTip plugin include &lt;a href=&quot;http://cherne.net/brian/resources/jquery.hoverIntent.html&quot; title=&quot;hoverIntent jQuery Plug-in&quot;&gt;hoverIntent&lt;/a&gt; and &lt;a href=&quot;http://brandonaaron.net/jquery/plugins/bgiframe/docs/&quot;&gt;bgIframe&lt;/a&gt;.&lt;/p&gt;  &lt;/dd&gt;
 		&lt;dt&gt;How do I get clueTip to work with dynamic content.&lt;/dt&gt;
 		&lt;dd&gt;There are a number of options available for working with dynamic content. By default, the &lt;code&gt;ajaxCache&lt;/code&gt; function is set to &lt;code&gt;true&lt;/code&gt;. This reduces the number of http requests are made to the server. However, it doesn't account for possible changes to the ajaxed data. If the contents of a particular clueTip will be updated on the server between invocations, you may want to set &lt;code&gt;ajaxCache: false&lt;/code&gt;. &lt;/dd&gt;
-		&lt;dt&gt;Why don't my JavaScript behaviors work on elements within a clueTip?&lt;/dt&gt;
-		&lt;dd&gt;If you expect your JavaScript to work on elements within clueTip content, in almost every case you will need to &quot;re-bind&quot; event handlers after the content is added to the DOM. You can do so by using the &lt;code&gt;onShow&lt;/code&gt; option. &lt;a href=&quot;http://grover.open2space.com/node/191&quot;&gt;Shawn Grover has written a great tutorial&lt;/a&gt; that explains how to do this. Check it out. &lt;/dd&gt;
+		&lt;dt&gt;&lt;em&gt;New as of clueTip 1.0.3&lt;/em&gt;: How do I programmatically close (hide) a clueTip?&lt;/dt&gt;
+		&lt;dd&gt;If you want to trigger a clueTip to close, based on some other interaction, you can use the following code: &lt;code&gt;$(document).trigger('hideCluetip');&lt;/code&gt; &lt;/dd&gt;
+		&lt;dt&gt;&lt;em&gt;New as of clueTip 1.0.4&lt;/em&gt;: Why don't the styles that I've applied to my local content carry over once they're inside a clueTip?&lt;/dt&gt;
+		&lt;dd&gt;When using an element on the same page to populate the clueTip's content, the plugin &lt;em&gt;clones&lt;/em&gt; that element. Because of potential problems caused by duplicate IDs within a page, the plugin also, by default, adds a suffix to the ID of the cloned element. If you have tied styles to the original ID, they won't be carried over. You can either give the &lt;code&gt;localIdSuffix&lt;/code&gt; an empty string ( '' ) for its value or add the id to your stylesheet rule.&lt;/dd&gt;
 		&lt;dt&gt;How do I add a delay before showing or closing the clueTip? &lt;/dt&gt;
 		&lt;dd&gt;While the clueTip plugin itself doesn't have a mechanism for delaying responses, it can take advantage of the optional hoverIntent plugin. To delay the showing of a clueTip, use the &lt;code&gt;interval&lt;/code&gt; property of the &lt;code&gt;hoverIntent&lt;/code&gt; option; to delay its hiding, use the &lt;code&gt;timeout&lt;/code&gt; property. Both properties are in measured in milliseconds. For example, the following sets both the show and the hide delays to 750 milliseconds (3/4 second):
 &lt;pre&gt;&lt;code&gt;$('a').cluetip({
@@ -305,9 +307,10 @@ $(document).ready(function() {
     &lt;/div&gt;
     &lt;div id=&quot;download&quot; class=&quot;tabContent&quot;&gt;
       &lt;h1&gt;Download&lt;/h1&gt;
-      The clueTip Plugin is available at:
+      &lt;p&gt;The latest &quot;stable&quot; release of the clueTip Plugin is available at:
       &lt;a class=&quot;external&quot; href=&quot;http://plugins.jquery.com/project/cluetip/&quot;&gt;http://plugins.jquery.com/project/cluetip/&lt;/a&gt;.
-
+      &lt;/p&gt;
+      &lt;p&gt;The plugin is also available on Github, where it is updated more frequently with incremental improvements and bug fixes: &lt;a href=&quot;http://github.com/kswedberg/jquery-cluetip/tree/master&quot;&gt;clueTip on Github&lt;/a&gt;&lt;/p&gt;
       &lt;h1&gt;Support&lt;/h1&gt;
       &lt;p&gt;Support for the clueTip Plugin is available through the
         &lt;a class=&quot;external&quot; href=&quot;http://groups.google.com/group/jquery-en/&quot;&gt;jQuery Mailing List&lt;/a&gt;.  
@@ -317,9 +320,6 @@ $(document).ready(function() {
       If you discover a bug in the clueTip plugin, please &lt;a href=&quot;http://plugins.jquery.com/node/add/project_issue/cluetip/bug&quot;&gt;report the bug here&lt;/a&gt;. (Note: if you have to be registered and logged in to report a bug. If you have not already registered, &lt;a href=&quot;http://plugins.jquery.com/user/register&quot;&gt;you can do so here&lt;/p&gt;.
       &lt;p&gt;If you would like the clueTip to do something that it doesn't already do, you may &lt;a href=&quot;http://plugins.jquery.com/node/add/project_issue/cluetip/feature&quot;&gt;request a feature&lt;/a&gt;.
       &lt;/p&gt;
-      &lt;h1&gt;More information&lt;/h1&gt;
-      &lt;p&gt;Read the blog entries for &lt;a href=&quot;http://www.learningjquery.com/2007/07/cluetip-plugin-beta&quot; title=&quot;Learning jQuery  &amp;raquo; clueTip Plugin Beta&quot;&gt;Beta 1&lt;/a&gt; and &lt;a href=&quot;http://www.learningjquery.com/2007/07/cluetip-plugin-beta-2&quot; title=&quot;Learning jQuery  &amp;raquo; clueTip Plugin Beta 2&quot;&gt;Beta 2&lt;/a&gt; for more information and examples.&lt;/p&gt;
-      &lt;p&gt;The current version (0.9.x) includes some fairly major API changes, so if you're upgrading from a version earlier than 0.8.x, be sure to check out the &lt;a href=&quot;#options&quot;&gt;options&lt;/a&gt;.&lt;/p&gt;
       &lt;div id=&quot;footer&quot;&gt;
         This documentation is maintained by Karl Swedberg.  Send comments or questions to karl [at] learningjquery [dot] com.
       &lt;/div&gt;</diff>
      <filename>index.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>233203c1a057ad3d1bb08005ca77e32d3613511d</id>
    </parent>
  </parents>
  <author>
    <name>Karl Swedberg</name>
    <email>karl@englishrules.com</email>
  </author>
  <url>http://github.com/kswedberg/jquery-cluetip/commit/86b9f8dc00a1a45ff49492036a0233331a2eade2</url>
  <id>86b9f8dc00a1a45ff49492036a0233331a2eade2</id>
  <committed-date>2009-06-28T08:15:09-07:00</committed-date>
  <authored-date>2009-06-28T08:15:09-07:00</authored-date>
  <message>updated doc page and demo page</message>
  <tree>73914e96abc05a90a3a48e564faf87d38cbb7634</tree>
  <committer>
    <name>Karl Swedberg</name>
    <email>karl@englishrules.com</email>
  </committer>
</commit>
