Hi!
I would like to call animation functions only after the external GSAP file is loaded. I could place the animation functions after the link to GSAP file like this:
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.19.0/TweenMax.min.js"></script>
<script>
//my animations
</script>
...but I want to load TweenMax.min.js asynchronously and that's the problem:
<script async src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.19.0/TweenMax.min.js"></script>
I've googled it and found some kind of solution. The idea is to have a global variable created by the the external script and check whether it exists or not. If it exists, then the external JS is loaded. I found the solution here.
So my question is: does TweenMax.min.js create any global variables or objects or whatever I can check the existence of?
Thanks in advance!