From 10c768cec88e224b52154ba3cdffe49accc19843 Mon Sep 17 00:00:00 2001 From: Adam Cable Date: Thu, 10 Jul 2025 08:35:09 +0100 Subject: [PATCH] Add alt text to Elephants images --- js/common.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/common.js b/js/common.js index a70f81236f..0b9f9b13ba 100644 --- a/js/common.js +++ b/js/common.js @@ -426,6 +426,7 @@ $(document).ready(function () { link.attr('href', photo.url); link.attr('title', photo.title); image = $(''); + image.attr('alt', photo.title); image.attr('src', 'data:image/jpeg;base64,' + photo.data); $(node).append(link.append(image)); }