Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I'm running this javascript, and everything works fine, except the paths to the background image. It works on my local ASP.NET Dev environment, but it does NOT work when deployed to a server in a virtual directory.

This is in an external .js file, folder structure is

Site/Content/style.css
Site/Scripts/myjsfile.js
Site/Images/filters_expand.jpg
Site/Images/filters_colapse.jpg

then this is where the js file is included from

Site/Views/ProductList/Index.aspx

$("#toggle").click(function() {
    if (left.width() > 0) {
        AnimateNav(left, right, 0);
        $(this).css("background", "url('../Images/filters_expand.jpg')");
    }
    else {
        AnimateNav(left, right, 170);
        $(this).css("background", "url('../Images/filters_collapse.jpg')");
    }
});

I've tried using '/Images/filters_collapse.jpg' and that doesn't work either; however, it seems to work on the server if I use '../../Images/filters_collapse.jpg'.

Basically, I want have the same functionallity as the ASP.NET tilda -- ~.

update

Are paths in external .js files relative to the Page they are included in, or the actual location of the .js file?

share|improve this question
Is your application directory different in development compared to the server? Visual Studio's in built web server sets the default path to '/' if your server has say '/MyApp' you might have inconsistent behaviour. Try setting your visual studio path to '/MyApp' – iaimtomisbehave Feb 2 '10 at 22:31
That is exactly the problem! Depending on where the virtual directory is located, I don't want to have to update my javascript every time I switch from dev to production... – Nate Feb 2 '10 at 22:32
Seems like this, superexpert.com/blog/archive/2009/02/18/…, is what you are looking for. – iaimtomisbehave Feb 2 '10 at 22:37
I'm using javascript to dynamically change the background image of a div tag. I'd like to avoid putting the code back into the master page file, since it's much more clean its own external .JS file... – Nate Feb 2 '10 at 22:43
There is nothing like ~ for javascript. You could have a helper function in JS. For example you would call MyJs.Url('Images/filters.jp') and this prefix your virtual directory and return the string. This way you will only need to change it one location on deploy. – iaimtomisbehave Feb 2 '10 at 23:02
show 1 more comment

8 Answers

up vote 37 down vote accepted

JavaScript file paths

When in script, paths are relative to displayed page

to make things easier you can print out a simple js declaration like this and using this variable all across your scripts:

Solution employed on StackOverflow:

<script type="text/javascript">
   var imagePath = 'http://sstatic.net/so/img/';
</script>

just have a look at StackOverflow's html source, you will find this badass one-liner [formatted to 3 lines :) ] in the <head /> section

share|improve this answer
6  
+1 for baddass and one-liner in the same sentence. :) – Nate Feb 3 '10 at 15:16
4  
I ended up doing this, except I use Url.Content to generate the value for imagePath. Thanks! – Nate Feb 4 '10 at 21:45
Haha I did the same thing, then came back and read your comment nate. – Alex Ford Nov 18 '10 at 21:08
Awesome, thanks so much! – MrB Sep 27 '11 at 20:44
1  
This works but it is also definetively a workaround, not a proper solution. @schory's answer gave me the solutions to OP's problem. – daniloquio Feb 22 '12 at 13:49
show 2 more comments

get the location of your javascript file during run time using jQuery by parsing the DOM for the 'src' attribute that referred it:

var jsFileLocation = $('script[src*=example]').attr('src');  // the js file path
jsFileLocation = jsFileLocation.replace('example.js', '');   // the js folder path

(assuming your javascript file is named 'example.js')

share|improve this answer
$("#FkngDiv").load(jsFileLocation+"../FkngFolder/FkngPage.aspx") Worked like a charm for me. I'm using it this way to go back one folder level and then I just point to my desired path. – daniloquio Feb 22 '12 at 13:53
very good answer. I'd change the .replace expression to jsFileLocation.replace(/example\.js.*$/, '') in case there's a query string like a version number after the .js – yitwail Jul 22 '12 at 21:42
Just wanted to say this solved a problem I was having. thanks. – Derek Mar 12 at 16:56

Good question.

  • When in a CSS file, URLs will be relative to the CSS file.

  • When writing properties using JavaScript, URLs should always be relative to the page (the main resource requested).

There is no tilde functionality built-in in JS that I know of. The usual way would be to define a JavaScript variable specifying the base path:

<script type="text/javascript">

  directory_root = "http://www.example.com/resources";

</script> 

and to reference that root whenever you assign URLs dynamically.

share|improve this answer
2  
Hard coding the root doesn't work on your dev box, test server, etc. – RickAndMSFT Mar 17 '12 at 19:14

A proper solution is using a css class instead of writing src in js file. For example instead of using:

$(this).css("background", "url('../Images/filters_collapse.jpg')");

use:

$(this).addClass("xxx");

and in a css file that is loaded in the page write:

.xxx {
  background-image:url('../Images/filters_collapse.jpg');
}
share|improve this answer
Why doesn't this have more votes?... – Matt M. Jan 3 at 22:16

I used pekka's pattern. I think yet another pattern.

<script src="<% = Url.Content("~/Site/Scripts/myjsfile.js") %>?root=<% = Page.ResolveUrl("~/Site/images") %>">

and parsed querystring in myjsfile.js.

Plugins | jQuery Plugins

share|improve this answer

This is from my Site.Master:

<%=Html.RenderCssHandler(Url.Content("~/Content/styles/default.css"))%>
<%=Html.RenderCssHandler(Url.Content("~/Content/WidgetFrameworkV2/widget_v2.css"))%>
<%=Html.RenderCssHandler(Url.Content("~/Content/styles/EditMode.css"))%>
<%=Html.RenderJavaScriptHandler(Url.Content("~/Scripts/jquery-1.3.1.min.js"))%>
<%=Html.RenderPendingJavaScriptHandler(Url.Content("~/Scripts/pending.js"))%>

HtmlHelpers:

    public static string ServerHost
    {
        get { return HttpContext.Current.Request.ApplicationPath; } //.Url.GetLeftPart(UriPartial.Authority); }
    }

    public static string RenderCssHandler(this HtmlHelper htmlHelper, string cssfile)
    {
        //string scriptUrl = ServerHost + VirtualPathUtility.ToAbsolute(cssfile);
        string constructHandler = string.Format("{0}/Services/GetMinifiedCss?css={1}", ServerHost,
                                                HttpUtility.UrlEncode(VirtualPathUtility.ToAbsolute(cssfile))).Replace("//", "/");
        string renderedScript = string.Format("<link href='{0}' rel='stylesheet' type='text/css' />{1}", constructHandler,
                                              Environment.NewLine);
        return renderedScript;
    }

    public static string RenderJavaScriptHandler(this HtmlHelper htmlHelper, string script)
    {
        // convert input script URL to absolute site URL
        //string scriptUrl = ServerHost + VirtualPathUtility.ToAbsolute(script);
        string constructHandler = string.Format("{0}/Services/GetJavaScript?jsPath={1}", ServerHost,
                                                HttpUtility.UrlEncode(VirtualPathUtility.ToAbsolute(script))).Replace("//", "/");
        string renderedScript = string.Format("<script type='text/javascript' src='{0}'></script>{1}", constructHandler,
                                              Environment.NewLine);
        return renderedScript;
    }

    public static string RenderPendingJavaScriptHandler(this HtmlHelper htmlHelper, string script)
    {
        // convert input script URL to absolute site URL
        //string scriptUrl = ServerHost + VirtualPathUtility.ToAbsolute(script);
        string constructHandler = string.Format("{0}/Services/GetPendingJavaScript?jsPath={1}&ServerHost={2}", ServerHost,
                                                HttpUtility.UrlEncode(VirtualPathUtility.ToAbsolute(script)),
                                                HttpUtility.UrlEncode(ServerHost)).Replace("//", "/");
        string renderedScript = string.Format("<script type='text/javascript' src='{0}'></script>{1}", constructHandler,
                                              Environment.NewLine);
        return renderedScript;
    }

Services Controller:

    [OutputCache(Duration = 86400, Location = OutputCacheLocation.Client, VaryByParam = "jsPath;ServerHost")]
    [CompressFilter]
    // Minifies, compresses JavaScript files and replaces tildas "~" with input serverHost address 
    // (for correct rewrite of paths inside JS files) and stores the response in client (browser) cache for a day
    public JavaScriptResult GetPendingJavaScript(string jsPath, string serverHost)
    {
        //string path = Utility.MyUrlDecode(base64EncodedPath);
        //string serverHost = Utility.MyUrlDecode(base64EncodedServerHost);
        string path = HttpUtility.UrlDecode(jsPath);
        string server = HttpUtility.UrlDecode(serverHost);
        JavaScriptResult js = new JavaScriptResult();
        string filePath = Server.MapPath(path);
        if (System.IO.File.Exists(filePath))
        {
            JavaScriptMinifier jsmin = new JavaScriptMinifier();
            FileStream fstream = new FileStream(filePath, FileMode.Open, FileAccess.Read, FileShare.Read);
            StreamReader reader = new StreamReader(fstream);
            string script = jsmin.Minify(reader);
            if (!string.IsNullOrEmpty(serverHost))
            {
                if (server == "/")
                    script = script.Replace("~", "");
                else
                    script = script.Replace("~", server);
            }

            fstream.Close();
            reader.Close();

            js.Script = script;
        }
        return js;
    }

(please note that I've left out GetMinifiedCss action because it follows the same guidelines as GetJavaScript action)

And Action Filters:

public class CompressFilter : ActionFilterAttribute
{
    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        HttpRequestBase request = filterContext.HttpContext.Request;

        string acceptEncoding = request.Headers["Accept-Encoding"];

        if (string.IsNullOrEmpty(acceptEncoding)) return;

        acceptEncoding = acceptEncoding.ToUpperInvariant();

        HttpResponseBase response = filterContext.HttpContext.Response;

        if (acceptEncoding.Contains("GZIP"))
        {
            response.AppendHeader("Content-encoding", "gzip");
            response.Filter = new GZipStream(response.Filter, CompressionMode.Compress);
        }
        else if (acceptEncoding.Contains("DEFLATE"))
        {
            response.AppendHeader("Content-encoding", "deflate");
            response.Filter = new DeflateStream(response.Filter, CompressionMode.Compress);
        }
    }
}

HTH

P.S. Use the JavaScriptMinifier of your choice for minification....Google search should find it.

share|improve this answer
Yes, this is how I am including my .js files, I was wondering if I could use a similar approach inside the .js files themselves. It appears that there isn't any solution as elegent. – Nate Feb 3 '10 at 15:17

Please use the following syntax to enjoy the luxury of asp.net tilda ("~") in javascript

<script src=<%=Page.ResolveUrl("~/MasterPages/assets/js/jquery.js")%>></script>
share|improve this answer

You need to add runat="server" and and to assign an ID for it, then specify the absolute path like this:

<script type="text/javascript" runat="server" id="myID" src="~/js/jquery.jqGrid.js"></script>]

From the codebehind, you can change the src programatically using the ID.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.