I'm building a simple website with AngularJS to learn more about the framework. I want to include a typing animation on the home view, and after looking through several options, I decided to add the jQuery plug-in Typed.js.
I began by adding all of the code in my index.html to see if I properly added it, which worked. But when I moved the script and HTML element into separate files and set up the route in app.js, the animation not longer played.
I tried following the solution laid out here in the answer to this question, but wasn't able to get it to work for me.
I've been looking into the possibility of creating a custom directive after reading some other articles, as well as tinkering with several jQuery event listeners, but I'm fairly stumped at this point.
I've researched some options that I can use if this one doesn't pan out, but I'd really like to stick with it to see if I can't walk away with a deeper understanding of Angular.