I have a page which dynamically displays dozens of videos (for technical reasons) on each page load. My specifications require me to have each video clickable in the HTML.
IE:
<video id="video-01448_1" preload="none" controls="">
<source src="https://downloadurl.com/filename1.mp4" type="video/mp4">
</video>
<video id="video-01448_2" preload="none" controls="">
<source src="https://downloadurl.com/filename2.mp4" type="video/mp4">
</video>
... more videos
preload="none" works in Chrome, FireFox and other browsers, but IE will still preload a few seconds of each video. This is fine when only a couple videos are on the page, but it slows down or literally crashes IE/Edge when 100+ video links are on the page.
This is a known issue with Microsoft, however not a bug as preload is merely considered a suggestion for the browser.
See: https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7117594/
My question... Is there a simple solution or workaround for this situation?