Drupal is a registered trademark of Dries Buytaert
Release: Leaflet 10.4.11 Minor update available for module leaflet (10.4.11). Release: Session Inspector 1.0.8 Minor update available for module session_inspector (1.0.8). Release: Migrate QA 2.0.4 Minor update available for module migrate_qa (2.0.4). Release: CKEditor Description List 3.0.0 Major update available for module ckeditor_descriptionlist (3.0.0). Release: FlowDrop 2.4.0 Minor update available for module flowdrop (2.4.0). Release: JWT Token Refresh 1.0.4 Minor update available for module jwt_token_refresh (1.0.4). Release: ConReg 1.0.0-beta1 First beta version released for module conreg (1.0.0-beta1). Release: AI Image Studio 1.0.0-beta8 New beta version released for module ai_image_studio (1.0.0-beta8). Usage Milestone: Role Theme Switcher Module role_theme_switcher crossed 1,000 active installs. Module Revived: Decoupled Router 2.0.7 Module decoupled_router updated after 11 months of inactivity (2.0.7).

Ajax link

63 sites Security covered
View on drupal.org

The ajax_link module provides an easy way for developers to implement AJAX links that load and replace content in specific areas of a page. By adding simple data attributes to links, developers can control which content is loaded and how it's displayed, making it seamless for themers to integrate.

The ajax link module give tools for themers and developers to easily implements ajax links.

Core implements AjaxResponse methods, but if you already have a page with content you want to append or replace in an area, you have to define custom AjaxResponse to each cases.

This module implements a generic AjaxResponse which load and render page accessible by the link you click on, and only respond with the markup of the array to replace.

Nothing to configure from the UI, everything happens by data attributes on the links, so it's easy to access for themers.

The ajax_link/ajaxLink library needs to be attached on pages where you want to use ajax link.

Example :

I want to load the next page of the product list in the area matching the class products-list.
Define the link as an ajax link adding 'ajax-link' class to the link markup.
Add the 'data-ajax-link-selector' data attribute with css selector where to find and replace content : '.products-list'.
<a href="{{ url }}" class="ajax-link" data-ajax-link-selector=".products-list">This is an ajax link</a>

And in preprocess :

$variables['#attached']['library'][] = 'ajax_link/ajaxLink';

or twig :
{{ attach_library('ajax_link/ajaxLink') }}

Here is available settings for the link :

  • Class :
    • ajax-link : required, Let the module know this link is an ajax link
    • ajax-link-auto : optional, when the link will be 'visible' in the browser, the link will be automatically clicked. With this option, you can have an infinite scroll pager for example.
    • ajax-link-hidden : optional, hide the link. Compatible with ajax-link-auto
  • Data attributes :
    • data-ajax-link-selector: required, define the area to get content and to replace/append.
    • data-ajax-link-method: optional, Define the method to use : replace (default) OR append
    • data-ajax-link-history: optional, Set to 1 if you want the browser history to reflect the clicked link. Default to 0.
    • data-ajax-link-remove-after-execution: optional, remove link after execution. Default to true. Set value to false to keep
      the link displayed and executable.

Activity

Tracked releases
2
Tracked since
Mar 2026
Latest release
2 months ago
Releases (12 mo)
2 ▲ from 0
Maintenance
Active

Releases

Version Type Release date
1.0.6 Stable Jun 20, 2026
1.0.5 Stable Mar 26, 2026