Panel | ||||
---|---|---|---|---|
On this page:
|
...
The following function will create a recursive link between the function falseLink and itself:
Code Block | ||
---|---|---|
| ||
function falseLink(...){ var falseLink = a("newElement"); ... return falseLink; } |
Example 2:
The following two functions will create a link between the function ""a and the function "falseLink":
Code Block | ||
---|---|---|
| ||
function falseLink(...){ ... } function a(...){ var falseLink = a("newElement"); ... return falseLink; } |
Interdependencies between client-side code and server-side code
...