mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 15:55:56 +01:00
20 lines
593 B
HTML
20 lines
593 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body>
|
||
|
|
||
|
<h1>JS extension with a function demo.</h1>
|
||
|
|
||
|
<p>The CEF3 document describing JavaScript extensions 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>test.myfunc()</strong> which was registered in the GlobalCEFApp.OnWebKitInitialized event.</p>
|
||
|
<button onclick="myFunction()">Click me</button>
|
||
|
|
||
|
<script>
|
||
|
function myFunction() {
|
||
|
alert(test.myfunc());
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|