Hi,

I'm new to javascript, only know the .net environment.
I would like to use javascript on my pages. I guess i wud need some help to do that.

File 1 => a.html
File 2 => b.js
File 3 => c.html

So what i want to do is pass a variable from file 1 to file 3 , but it needs to go thru file 2. so File 1 willl send to File 2 then file 2 will send to file 3.

So this is what i currently have

File 1:

HTML Code:
getdelay(2000);
File 2 - (so i belive this code will save the sent value to var delayy?)

Code:
function getdelay(ms2) {

    delayy = ms2;
    
}
But then i'm not sure how to send that value from File 2 to File 3.

I will really appreciate it if you can redirect me to the right direction.

Thank You