diff --git a/src/ui/core/zcl_abapgit_html.clas.abap b/src/ui/core/zcl_abapgit_html.clas.abap
index a569e50ba..becfb5e49 100644
--- a/src/ui/core/zcl_abapgit_html.clas.abap
+++ b/src/ui/core/zcl_abapgit_html.clas.abap
@@ -289,6 +289,7 @@ CLASS zcl_abapgit_html IMPLEMENTATION.
lv_act TYPE string,
lv_style TYPE string,
lv_title TYPE string.
+ DATA lv_mode TYPE tabname.
lv_class = iv_class.
@@ -341,6 +342,14 @@ CLASS zcl_abapgit_html IMPLEMENTATION.
lv_title = | title="{ iv_title }"|.
ENDIF.
+ " Debug option to display href-link on hover
+ GET PARAMETER ID 'DBT' FIELD lv_mode.
+ IF lv_mode = 'HREF'.
+ lv_title = | title="{ escape(
+ val = lv_href
+ format = cl_abap_format=>e_html_attr ) }"|.
+ ENDIF.
+
rv_str = ||
&& |{ iv_txt }|.