Following is from cshtml in a ASP.Net MVC 4 View
I have a meta tag
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
I have a Render script
@Scripts.Render("~/Scripts/UpdateHeader.js")
<script src="@Url.Content("~/Scripts/jquery-1.10.2.js")" type="text/javascript"></script>
But it is rendering as:
<script src="/Scripts/UpdateHeader.js"></script>
<script src="/Scripts/jquery-1.10.2.js" type="text/javascript"></script>
The type is missing:
type="text/javascript"
What is the best way to include type along with @Scripts.Render ?