Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Panel

On this page:

Table of Contents
maxLevel2

...

The following function will create a recursive link between the function falseLink and itself:


 

Code Block
languagexml
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
languagexml
function falseLink(...){
    ...
}
 
function a(...){
    var falseLink = a("newElement");
    ...
    return falseLink;
}
 


Interdependencies between client-side code and server-side code

...