Nested function call : Function Call : Function JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Function » Function Call »

 

Nested function call

















<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!--
function firstMessage()
{
    alert("Here is the first message!");
    secondMessage();
}

function secondMessage()
{
    alert("And here is the second!");
}
//  -->
</script>
</head>
<body onLoad="firstMessage()">

</body>
</html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Function
» Function Call