On 13/01/20 22:46, Nuno Silva wrote:
On 2020-01-13, Gerry Hickman wrote:

Browsing to this page, with SeaMonkey/2.49.4, the images seem to be
missing? I think they're using a "data-src" tag.

https://developer.ibm.com/tutorials/l-virtual-filesystem-switch/

Those are "lazy-loaded" images, handled by javascript code.
...

You can provide UserJS or, more easily, if (as you should) you have NoScript installed, a NoScript page surrogate (!@ site prefix) for the site on these lines:

for (let ii of document.querySelectorAll("img[data-src]")) {
        ii.setAttribute("src", ii.getAttribute("data-src"));
}

See <https://hackademix.net/2011/09/29/script-surrogates-quick-reference/>.

/df

--
London
UK
_______________________________________________
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey

Reply via email to