Jump to content

Global var thoughout functions kinda thing


matfish

Recommended Posts

Hey,

 

Iv got a load of javascript functions in a .js file, but Iv had to manually hardcode each URL. I would like to put a variable like "dir" so I can use like a global directory:

 

function hide(which){
element =	document.getElementById(which);
anchr = document.getElementById('a_'+which);
img = document.getElementById('i_'+which);
element.style.display = 'none';
anchr.href = 'javascript:show(\''+which+'\')';
img.src = '/foldername/image_assets/expand.gif';
}

 

For example: the above; so that /foldername/ could be specified at the top of the .js file and would inherit throughout all the functions? Oh - trying without to pass a new variable through the function?

 

Anyone? Please? Thanks ;)

Link to comment
Share on other sites

somewhere in the javascript (outside the functions) create a variable called folder

var folder = "/foldername/";

 

Inside the function, just use that variable

...
img.src = folder+'image_assets/expand.gif';
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.