|
-
Apr 29th, 2012, 10:38 PM
#1
Thread Starter
Frenzied Member
sending and receiving variable in parameter
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|