Skip to content

Instantly share code, notes, and snippets.

@emphaticsunshine
Created August 10, 2012 02:59
Show Gist options
  • Save emphaticsunshine/3310621 to your computer and use it in GitHub Desktop.
Save emphaticsunshine/3310621 to your computer and use it in GitHub Desktop.
Reduce number of script blocks
/* This should be avoided
<script>
// block A javascript code
</script>
<script>
//block B javascript code
</script>
/* Better way */
<script>
// block A javascript code
// block B javascript code
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment