CEF4Delphi/bin/JSWindowBindingWithFunction.html

20 lines
597 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<body>
<h1>JS Window Binding with a function demo.</h1>
<p>The CEF3 document describing JavaScript Window Bindings is here :<br>
<a href="https://bitbucket.org/chromiumembedded/cef/wiki/JavaScriptIntegration.md">https://bitbucket.org/chromiumembedded/cef/wiki/JavaScriptIntegration.md</a></p>
<p>The following button shows the result of <strong>window.myfunc()</strong> which was set in the GlobalCEFApp.OnContextCreated event.</p>
<button onclick="myFunction()">Click me</button>
<script>
function myFunction() {
alert(window.myfunc());
}
</script>
</body>
</html>