Skip to content

Instantly share code, notes, and snippets.

@douglaskarr
Created April 7, 2018 01:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save douglaskarr/b42d1c5184735ab410cdadf5e36e1d36 to your computer and use it in GitHub Desktop.
Save douglaskarr/b42d1c5184735ab410cdadf5e36e1d36 to your computer and use it in GitHub Desktop.
Delay the loading of an external script using jQuery
<script type="text/javascript">
window.setTimeout(function() {
jQuery.getScript( "//domain.com/script.js");
}, 500);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment