I have a C#.Net MVC3 web app. In a certain js file I am loading a dialog box and assigning the loading: property the below image
loading: $('<img src="../../Content/Images/loading.gif" alt="loading" class="ui-loading-icon">'),
However, in different environments it does not find the image. The code in those instances should be
loading: $('<img src="../../../Content/Images/loading.gif" alt="loading" class="ui-loading-icon">'),
I tried
loading: $('<img src="@Href("~/Content/Images/loading.gif")" alt="loading" class="ui-loading-icon">'),
And also tried
loading: $('<img src="@Url.Content("~/Content/Images/loading.gif")" alt="loading" class="ui-loading-icon">'),
Neither worked....when I've used @Url.Content and @Href in the aspx files, it works.
Needless to say, I'm not a javaScript expert, but I figure this must be do-able in the js file.
Any ideas?