-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
20 lines (18 loc) · 704 Bytes
/
Copy pathmain.html
File metadata and controls
20 lines (18 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-5">
<button class="btn btn-primary btn-block" id="btnTransmit">Transmit Message</button>
<button class="btn btn-primary btn-block" id="btnReceive">Receive Message</button>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
$("#btnTransmit").on("click", function () {
loadAtSecondFrame("framing.html", "transmit");
});
$("#btnReceive").on("click", function () {
loadAtSecondFrame("framing.html", "receive");
});
});
</script>
</div>