<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -176,6 +176,11 @@ You can print debug statements to the Firebug console by setting the debug optio
 
 To enable: &lt;code&gt;$.fn.track.defaults.debug = true;&lt;/code&gt;
 
+h2. Todo
+
+* Review code
+* Refactor code
+
 h2. Author
 
 &quot;Christian Hellsten&quot;:http://christianhellsten.com (&quot;Aktagon Ltd.&quot;:http://aktagon.com)</diff>
      <filename>README.textile</filename>
    </modified>
    <modified>
      <diff>@@ -7,6 +7,7 @@
 * Adds the following methods to jQuery:
 *   - $.trackPage() - Adds Google Analytics tracking on the page from which
 *     it's called.
+*   - $.trackPageview() - Tracks a pageview using the given uri. Can be used for tracking Ajax requests: http://www.google.com/support/analytics/bin/answer.py?hl=en&amp;answer=55519
 *   - $.trackEvent() - Tracks an event using the given parameters.
 *   - $('a').track() - Adds event tracking to element(s).
 *   - $.timePageLoad() - Measures the time it takes  an event using the given parameters.
@@ -33,7 +34,7 @@
 * Repository:
 *   git://github.com/christianhellsten/jquery-google-analytics.git
 *
-* Version 1.1.2
+* Version 1.1.3
 *
 * Tested with:
 *   - Mac: Firefox 3, Safari 3
@@ -141,6 +142,18 @@
   };
 
   /**
+   * Tracks a pageview using the given uri.
+   *
+   */
+  $.trackPageview = function(uri) {
+    if(typeof pageTracker == 'undefined') {
+      debug('FATAL: pageTracker is not defined');
+    } else {
+      pageTracker._trackPageview(uri);
+    }
+  }
+
+  /**
    * Adds click tracking to elements. Usage:
    *
    *  $('a').track()</diff>
      <filename>jquery.google-analytics.js</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c4fba074ebd484d1731cb117afdf0caccdf129a6</id>
    </parent>
  </parents>
  <author>
    <name>Christian Hellsten</name>
    <email>christian.hellsten@gmail.com</email>
  </author>
  <url>http://github.com/christianhellsten/jquery-google-analytics/commit/65e30d67db38d93856f13dc1cea73d5b79f5aa8e</url>
  <id>65e30d67db38d93856f13dc1cea73d5b79f5aa8e</id>
  <committed-date>2009-08-18T11:15:53-07:00</committed-date>
  <authored-date>2009-08-18T11:15:53-07:00</authored-date>
  <message>Added trackPageview method</message>
  <tree>e814d0eafa107d0bc9f40719f0e953a7d043f559</tree>
  <committer>
    <name>Christian Hellsten</name>
    <email>christian.hellsten@gmail.com</email>
  </committer>
</commit>
