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

I am adding my Javsacript file in pages with different query strings in the script path like this:

Page1:

<script type="text/javascript" src="file.js?abc=123"></script>

Page2:

<script type="text/javascript" src="file.js?abc=456"></script>

Page3:

<script type="text/javascript" src="file.js?abc=789"></script>

In my Javascript file, how can I get the value of the "abc" param? I tried using window.location for this, but that does not work.

In case it helps, below is a function I use to find the value of a query string param:

function getQuerystring(key, defaultValue) {
    if (defaultValue == null) defaultValue = "";
    key = key.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
    var regex = new RegExp("[\\?&]" + key + "=([^&#]*)");
    var qs = regex.exec(window.location.href);
    if (qs == null)
        return defaultValue;
    else
        return qs[1];
}
share|improve this question

3 Answers

up vote 10 down vote accepted

This is possible. See Passing JavaScript arguments via the src attribute. The punchline is that since scripts in HTML (not XHTML) are executed as loaded, this will allow a script to find itself as it is always the last script in the page when it’s triggered–

var scripts = document.getElementsByTagName('script');
var index = scripts.length - 1;
var myScript = scripts[index];
// myScript now contains our script object
var queryString = myScript.src.replace(/^[^\?]+\??/,'');

Then you just apply the query string parsing.

share|improve this answer
3  
"...since scripts in HTML (not XHTML) are executed as loaded..." Note that the defer and async attributes modify that behavior, so if you're using them, this may not work: Your script may not be the last in the series at that point. Relying on that would give me the shivers anyway, so I'd probably use the filename and filter on src (granted that introduces a restriction that the file can't be renamed). – T.J. Crowder Feb 15 '12 at 14:08
1  
Filtering on src might be tricky if you referenced the same script multiple times with different params. – bendytree Apr 11 at 17:42

First, the technical answer: if you assign your script tag an ID, you can then grab its src and then parse out the query string.

<script id="whatever" type="text/javascript" src="file.js?abc=123"></script>

 

var path = document.getElementById('whatever').src;
// ...

With that answered, I'd like to voice my concern — this reeks of poor design decisions. Why are you including your script this way (with a querystring)? If you're trying to optimize your site (by having one large script that can be cached for subsequent pages), this approch is actually counter-productive because browsers will make a fresh request for the script file on each page due to the differing query string. The correct approach is to have one large shared file and then a small page-specific file on each page.

share|improve this answer
Josh3736 - one reason (and this is the reason I ended up here via a Google search ) is to handle a widget that is being used elsewhere. For example, I'm doing <script src="mywidget.js">. I'd like to pass a variable to the script. – Raymond Camden Apr 2 at 22:07

I would do it server-side with PHP:

file /file.js/index.php

<?php
    ob_start("ob_gzhandler"); /*To compress the script*/

    if(isset($_GET['abc'])){
        echo 'var abc = ' . $_GET['abc'] . ';';
    }
    echo file_get_contents("file.js");//output the real file
?>

And then in your script you can simply use the var abc .

Why does it work? Simply because /file.js is a directory and by default your webserver will use index.php/asp/jsp/whatever to handle the request.

OR more simple, client-side:

<script type="text/javascript">
    var abc=123;
    document.write(unescape("%3Cscript src='" + 'file.js' + "' type='text/javascript'%3E%3C/script%3E"));
</script>

Or:

<script type="text/javascript">var abc=123;</script>
<script type="text/javascript" src="file.js"></script> 
share|improve this answer
1  
He is asking how to do it in Javascript not PHP. – jessegavin Jan 17 '11 at 19:00
2  
-1. Why do this instead of just referencing the js file directly? You lose browser caching, which could be a huge performance loss if your script file is relatively large. – josh3736 Jan 17 '11 at 19:01
I've changed my answer. Better? – Eric Gagnon Jan 17 '11 at 19:21

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.