Is there a reliable way to detect if the browser supports the <script>defer attribute without testing? I am not interested in creating several script blocks, either deferred or not observing, that are executed in the first place. I am looking for a legitimate feature detection. "defer" in document.createElement("script")returns just trueabout everywhere, giving a lot of false positives.
source
share