I'm wondering - is it possible to add something like
@Scripts.Render("~/bundles/jquery")
in plain .html file (not the .cshtml file)
I'm wondering - is it possible to add something like
@Scripts.Render("~/bundles/jquery")
in plain .html file (not the .cshtml file)
Yes, it is, you can use:
<script src="/Scripts/jquery1.js"></script>
<script src="/Scripts/jquery2.js"></script>
<script src="/Scripts/jquery3.js"></script>
Where jquery1.js, jquery2.js, jquery3.js are the files of the jquery bundle...