In an ASP.NET MVC project I'm trying to use jQuery spinner plugin. All's working fine except the following problem: an animated spinner.gif
is shown only if I use an absolute path to the image as a custom parameter.
In a jquery.spinner.js
script file the default path to the image is just plain "spinner.gif". I tried to put the image to the Image folder, which is inside Content folder, to the Script folder itself, to the root of the application folder - nothing was shown.
Where I should put the image in this case or how should I define the relative path, or maybe it's the issue specific to the ASP.NET MVC routing approach?