Is it possible to show some special (surprise) image to the user who is changing display property from "none" to "block" in Developer Tools?
It's very hard to understand what you want without showing any examples.
If I understand you:
function show() { document.getElementById("show").style.display = "block"; }
#show{ display:none }
<div id="show">not hidden</div> <button onclick="show()" >show</button>
Or I haven't understood you...
As long as the image is loaded in the DOM, yes, it could be made visible by doing that. I'm not sure why you would want to do that, but you may.
Copyright © 2021 Jogjafile Inc.
It's very hard to understand what you want without showing any examples.
If I understand you:
Or I haven't understood you...