Skip to content

Instantly share code, notes, and snippets.

@toruta39
Created May 7, 2013 08:25
Show Gist options
  • Save toruta39/5531073 to your computer and use it in GitHub Desktop.
Save toruta39/5531073 to your computer and use it in GitHub Desktop.
Conditional comment for supporting `window.btoa` and `window.atob` on *lte IE 9*
<!--[if lte IE 9]>
<script src="https://stringencoders.googlecode.com/svn/trunk/javascript/base64.js"></script>
<script>
if (!window.btoa) window.btoa = base64.encode;
if (!window.atob) window.atob = base64.decode;
</script>
<![endif]-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment