Skip to content

Instantly share code, notes, and snippets.

@jadbox
Last active April 15, 2023 01:28
Show Gist options
  • Save jadbox/da3c1ca665b041c7c92ff4f5f74f3721 to your computer and use it in GitHub Desktop.
Save jadbox/da3c1ca665b041c7c92ff4f5f74f3721 to your computer and use it in GitHub Desktop.
roomtest.html
<script src="https://meet.jit.si/external_api.js"></script>
<div id="meet">
</div>
hello world
<script>
var options = {
roomName: "jdtest",
width: 700,
height: 700,
parentNode: document.querySelector('#meet')
}
var domain = "meet.jit.si";
var api = new JitsiMeetExternalAPI(domain, options);
var v = x => {
api.dispose();
};
api.on("videoConferenceLeft", v);
api.on("readyToClose", v);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment