diff --git a/library/ZendAfi/View/Helper/Accueil/Sito.php b/library/ZendAfi/View/Helper/Accueil/Sito.php
index 8d9ff139c3a1d65927051627dbeaf1ca970aef2e..4ce888781a3d00912c6c8d9dfc630485a17595ac 100644
--- a/library/ZendAfi/View/Helper/Accueil/Sito.php
+++ b/library/ZendAfi/View/Helper/Accueil/Sito.php
@@ -254,7 +254,7 @@ class SelectedStrategy extends SitoDisplayStrategy {
                                                                                   'action' => 'widget-page',
                                                                                   'id_module' => $this->id_module,
                                                                                   'id_division' => $this->division],
-                                                                   'link_attribs' => [ 'data-reload-module' => 'true' ]
+                                                                   'link_attribs' => [ 'data-ajax-reload' => 'true' ]
                                                                    ]);
   }
 }
diff --git a/public/opac/js/reload_module.js b/public/opac/js/reload_module.js
index 232f25edaeedd417367b682f260cbf1e9dfbd6be..2a43d95bfc43fee454bce326157cca24f07fb2ea 100644
--- a/public/opac/js/reload_module.js
+++ b/public/opac/js/reload_module.js
@@ -17,7 +17,7 @@
 
 
 function initializeReloadModule() {
-  $('a[data-reload-module="true"]').click(function(event) {
+  $('.boite a[data-ajax-reload="true"]').click(function(event) {
     event.preventDefault();
 
     $(this).closest('.boite').reload($(this).attr('href'));
diff --git a/tests/library/ZendAfi/View/Helper/Accueil/SitoTest.php b/tests/library/ZendAfi/View/Helper/Accueil/SitoTest.php
index 36d15958a16d7a4a15e02e071b44ff3aaddb67d3..0784b9d82800d790bff35257e0cddd23fd154139 100644
--- a/tests/library/ZendAfi/View/Helper/Accueil/SitoTest.php
+++ b/tests/library/ZendAfi/View/Helper/Accueil/SitoTest.php
@@ -177,6 +177,12 @@ class SitoViewHelperSelectItemsBySelectionOrderPaginationTest extends SitoViewHe
     public function paginatorPreviousLinkShouldBeDisabled() {
       $this->assertXPathContentContains($this->html, '//div[@class="paginationControl"]//span[@class="disabled"]', utf8_encode('Précédent'));
     }
+
+
+    /** @test */
+    public function anchorsShouldHaveDataReloadModule() {
+      $this->assertXPathCount($this->html, '//div[@class="paginationControl"]//a[@data-ajax-reload="true"]', 2);
+    }
 }