Calling a function from a function
Posted: Fri Jul 30, 2004 12:08 pm
Hi,
How do I call a function from inside another function? Like
How do I call a function from inside another function? Like
Code: Select all
function blabla()
{
.......
blaanother();
}
function blaanother()
{
...
}