amit.patel
06-08-2009, 09:16 AM
Hello all,
I have two javascript function which i want to call seprately.suppose we have two function function A and B. when A function is called then it will call same function simuntaniously for after 1 min using javascript setInterval() function and same way B function . so both function call indivusually.something like below.
function A()
{
A();
}
function B()
{
B();
}
so i need this two function execute seprately and simuntaniously on body onload event.
so how can i do this?
I have two javascript function which i want to call seprately.suppose we have two function function A and B. when A function is called then it will call same function simuntaniously for after 1 min using javascript setInterval() function and same way B function . so both function call indivusually.something like below.
function A()
{
A();
}
function B()
{
B();
}
so i need this two function execute seprately and simuntaniously on body onload event.
so how can i do this?