forked from bilalshahzad139/jitsi-integration-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
myapp1.html
30 lines (28 loc) · 811 Bytes
/
myapp1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<html>
<head>
<style>
.container {
position: relative;;
width: 720px;
height:600px;
border:1px red solid;
}
</style>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://40.76.47.33/external_api.js"></script>
<script src="myapp1.js"></script>
<script>
$(function(){
$('#btnStart').on('click',function(){
StartMeeting();
});
});
</script>
</head>
<body>
<button id='btnStart'>Start</button>
<div class="container">
<div id='jitsi-meet-conf-container'></div>
</div>
</body>
</html>