-
-
Save davidbgk/47328c376b33b27be6bb70d7b8107abc to your computer and use it in GitHub Desktop.
Revisions
-
adactio created this gist
May 12, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ // Licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication // http://creativecommons.org/publicdomain/zero/1.0/ (function (win,doc) { 'use strict'; if (!win.FileReader || !win.addEventListener || !doc.querySelectorAll) { // doesn't cut the mustard. return; } doc.querySelectorAll('input[type="file"][accept="image/*"]').forEach( function (fileInput) { fileInput.addEventListener('change', function () { var files = fileInput.files; if (files) { files.forEach( function (file) { var fileReader = new FileReader(); fileReader.readAsDataURL(file); fileReader.addEventListener('load', function () { fileInput.insertAdjacentHTML( 'afterend', '<img src="' + this.result + '">' ); }); } } }); } }(this, this.document));