How to call the myfunc() function using the oWebview:Eval() method ?
(DG - external handler)
- Code: Select all Expand view
- <!DOCTYPE html>
<html>
<head>
</head>
<body>
<script>
DG.then(function() {
function myfun() {
alert(123) ;
} ;
}) ;
</script>
</body>
</html>