View Single Post
Old 11-14-2005, 03:22 PM   #5
laebedahs
Abecedarian
 
Join Date: Oct 2005
Posts: 172
Ok, here look at this example (which I know works, I tested it):

Quote:
function test1(blah1) {
return blah1;
}

function test2(blah2) {
return blah2;
}

window.alert(test1(test2('testing')));
laebedahs is offline   Reply With Quote