Peter Akakpo
New Member
There should be the possibility to call javascript function after the browser source had loaded the html file.
example:
<html>
<head>
<script>
function moveUp (distance)
{
}
</script>
</head>
<body>
</body>
</html>
Custom applications should be able to call the "moveUp" function passing the distance parameter after the source has been created.
example:
<html>
<head>
<script>
function moveUp (distance)
{
}
</script>
</head>
<body>
</body>
</html>
Custom applications should be able to call the "moveUp" function passing the distance parameter after the source has been created.