Hi
I have a javascript file called external1.js . This file has a function say function1.
In the function I need to make a call to external2 javscipt file(external2. js) function.
the sample code is
external1.js
external2.js
How do i achieve this functionality
Thank u
Mansoor.
I have a javascript file called external1.js . This file has a function say function1.
In the function I need to make a call to external2 javscipt file(external2. js) function.
the sample code is
external1.js
Code:
function1
{
.........
function2()// this function is defined in external2.js
.................
}
Code:
function2
{
................
................
.................
}
Thank u
Mansoor.
Comment