Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

gaTracker - Google Analytics Integration for jQuery


This plugin is intended to simplify the process of adding Google Analytics tracking to a page, including the tracking of outbound links, mailtos, and downloads, which are not otherwise tracked by default. Calling the plugin does the following:

  • Determine whether to include the SSL or non-SSL version of the GA script.
  • Include the GA script (currently urchin.js, while ga.js is still in beta testing) from within try/catch to help suppress any issues GA may have from time to time.
  • Set the _uacct variable to your GA tracking code.
  • Call the urchinTracker() function once for the initial page load.
  • Examine all of the links on the page and attach onclick events to external links, mailto links, and downloads.
  • Call urchinTracker() when these links are clicked, prefixing them appropriately.

In addition to the tracking code, the prefixes used for each of the link types above, as well as the extensions considered "downloadable files" are configurable by the user.

It requires jQuery 1.2 or higher for the cross-domain $.getScript() call. Usage is simply:

        $.gaTracker('UA-XXXXX-XX');

Or you can specify options like so:

        $.gaTracker(
                'UA-XXXXX-XX',
                {
                        external:       '/external/',
                        mailto:         '/mailto/',
                        download:       '/downloads/',
                        extensions:     [
                                'pdf','doc','xls','csv','jpg','gif', 'mp3',
                                'swf','txt','ppt','zip','gz','dmg','xml'
                        ]
                }
        );

Downloads



2.875
Your rating: None Average: 2.9 (8 votes)