diff --git a/index.html b/index.html
index 372f1a7..cca9088 100644
--- a/index.html
+++ b/index.html
@@ -52,6 +52,14 @@
bridgeABIsContainer.classList.add('show');
});
+ const loadPageOnLocationHash = () => {
+ if (location.hash === '#bridgeABIsContainer') {
+ bridgeABIsContainerLink.click();
+ }
+ };
+
+ loadPageOnLocationHash();
+