Saved Bookmarks
| 1. |
How can i call a function into another function....? |
|
Answer» FUNCTION function_one() { alert("The function CALLED 'function_one' has been called.") //Here I would like to CALL function_two. } function function_two() { alert("The function called 'function_two' has been called.") } |
|