diff --git a/dist/doc/extend.md b/dist/doc/extend.md
index 4dc0040f..35379d7e 100644
--- a/dist/doc/extend.md
+++ b/dist/doc/extend.md
@@ -118,25 +118,6 @@ and
[Event](https://developers.google.com/analytics/devguides/collection/analyticsjs/events)
Docs.
-### Track jQuery AJAX requests in Google Analytics
-
-An article by @JangoSteve explains how to [track jQuery AJAX requests in Google
-Analytics](https://www.alfajango.com/blog/track-jquery-ajax-requests-in-google-analytics/).
-
-Add this to `plugins.js`:
-
-```js
-/*
- * Log all jQuery AJAX requests to Google Analytics
- * See: https://www.alfajango.com/blog/track-jquery-ajax-requests-in-google-analytics/
- */
-if (typeof ga !== "undefined" && ga !== null) {
- $(document).ajaxSend(function(event, xhr, settings){
- ga('send', 'pageview', settings.url);
- });
-}
-```
-
### Track JavaScript errors in Google Analytics
Add this function after `ga` is defined:
diff --git a/dist/doc/html.md b/dist/doc/html.md
index a29fddf0..f61c7935 100644
--- a/dist/doc/html.md
+++ b/dist/doc/html.md
@@ -167,13 +167,11 @@ it before the other scripts in the bottom of the page:
```html
-