When I generate a MVC5 app using AngularJs, the _Layout.cshtml has the @Scripts.Render at the end of the file after the @RenderBody(), @Scripts.Render contains some animation related script, these script should execute after @RenderBody() elements loaded. Now all scripts are included into page before @RenderBody() elements loaded completely, so my script is not applying to my DOM elements.
I'm new to MVC & AngularJs Single page application. Please help me to achieve this.
What is the correct approach?
Thanks in advance!
