• 0

javascript variables


Question

hey, how can i get the variable from my javascript inclusion into my .js file?

this is the includsion from my php file

&lt;script type="text/javascript" src="./jscripts/script.js?url=http://google.com"></script>

and this is where i want to use it in the .js

http.open('getb]url[/b]+'files/parse/ajax.php?action='+action

how can i do it? im guessing i need to set the variable somewhere, but im not sure how.

Link to comment
https://www.neowin.net/forum/topic/571477-javascript-variables/
Share on other sites

11 answers to this question

Recommended Posts

  • 0

if you are trying to grab the url from the script tag, you could make it the first script tag on your page and do something like this:

		&lt;script src="myscript.js?url=http://lol.com" charset="utf-8"&gt;&lt;/script&gt;
		&lt;script charset="utf-8"&gt;
			var script = document.getElementsByTagName('script')[0];
			var url = script.src.substring(script.src.indexOf("?url=")+5script.sscript.src.length);
			alert(url);
		&lt;/script&gt;

That should grab it...or you could set your script to have an ID and get it that way. In that case, you would just give your script tag an ID and then grab it with

var script = document.getElementById('theid');

Hope that helped a bit.

  • 0

Or, you could simply have a page such like:

&lt;script type="text/javascript" src="/mypage.aspx?var1=a&var2=b"></script>

You could then get 'mypage.aspx' (or whatever scripting language you use) to write the javascript with a content type of text/javascript.

  • 0

I'd recommend keeping the JS client-side, just declaring the vars before linking to an external js file.

&lt;script type="text/javascript"&gt;
var msg = 'It worked';
&lt;/script&gt;
&lt;script type="text/javascript" src="a.js"&gt;&lt;/script&gt;

Then just reference the var as if it had been declared in the external JS file.

  • 0
  Kudos said:
To those of you suggesting server-side solutions, have fun with the cache!

Hmm...

ASP.NET:

Response.Cache.SetCacheability(HttpCacheability.NoCache)

ASP:

Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "no-cache"
Response.Expires = -1

PHP:

header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");

  • 0
  Antaris said:
Hmm...

ASP.NET:

Response.Cache.SetCacheability(HttpCacheability.NoCache)

ASP:

Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "no-cache"
Response.Expires = -1

PHP:

header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");

I'm not disputing it's viability. It introduces more complexity that will in the end just make things more difficult than it needs be. As a rule, I avoid messing with the cache unless there is no alternative. In this particular case it is not only bad practice, but completely needless.

Edited by Kudos
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.