diff --git a/sites/all/modules/jquery_update/jquery_update.module b/sites/all/modules/jquery_update/jquery_update.module
index 28c82c0..f1be5b4 100644
--- a/sites/all/modules/jquery_update/jquery_update.module
+++ b/sites/all/modules/jquery_update/jquery_update.module
@@ -95,6 +95,17 @@ function jquery_update_library_alter(&$javascript, $module) {
       $version = $ajax_version;
     }
   }
+  
+  // Allow other modules to override jquery version by path.
+  $alter_paths = array();
+  drupal_alter('jquery_update_paths', $alter_paths);
+  
+  foreach ($alter_paths as $pattern => $alter_version) {
+    if (drupal_match_path(request_path(), $pattern)) {
+      $version = $alter_version;
+    }
+  }
+  
 
   // Modified System Library.
   if ($module === 'system') {
