(LIBOBS) Ability to call javascript functions inside a browser source after loading

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.
 
Top