CEF4Delphi/bin/JSWindowBindingWithObject.html
Salvador Díaz Fau b54a2861c4 Bug fix #68
RenderProcessHandler and ResourceBundleHandler are now created automatically in TCEFApplication. All their events are now TCEFApplication events.
2017-11-22 17:43:48 +01:00

20 lines
604 B
HTML

<!DOCTYPE html>
<html>
<body>
<h1>JS Window Binding with an object 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 contents of <strong>window.myobj.myval</strong> which was set in the GlobalCEFApp.OnContextCreated event.</p>
<button onclick="myFunction()">Click me</button>
<script>
function myFunction() {
alert(window.myobj.myval);
}
</script>
</body>
</html>