Skip to content

Instantly share code, notes, and snippets.

@flexbox
Last active August 29, 2015 14:01
Show Gist options
  • Save flexbox/c244d7bebd646582fcfe to your computer and use it in GitHub Desktop.
Save flexbox/c244d7bebd646582fcfe to your computer and use it in GitHub Desktop.
[blog] - small snippet for http://davidl.fr/blog/site-web-obese.html
<html>
...
<script id="js-module-lazy">
/*
JavaScript commented code
*/
</script>
<script>
function lazyLoad(){
var lazyElement = document.getElementById('js-module-lazy');
var lazyElementContent = lazyElement.innerHTML;
var jsCode = stripOutCommentBlock(lazyElementContent);
eval(jsCode);
}
</script>
<button onclick="lazyLoad()">Lazy load feature</button>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment