How to include JSZip in the browser
The JSZip documentation doesn’t make it entirely clear how to include it in the browser, i.e. which <script>
tag you need to use in order to load JSZip.
Here’s the appropriate <script>
tag:
<script src="https://unpkg.com/[email protected]/dist/jszip.min.js" type="text/javascript"></script>
You can also use the non-minified version which does not have minified class and object names:
<script src="https://unpkg.com/[email protected]/dist/jszip.js" type="text/javascript"></script>