I have requirement to load script bundle in mvc through javascript call.
Normally we load it using cshtml file in below format :
@section Scripts{
@Scripts.Render("~/bundles/Email")
}
But i want the above requirement need to be called through a java-script file
Could someone do some pointers how to do it ?