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 ;)

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.