-
Notifications
You must be signed in to change notification settings - Fork 0
/
iframe.html
27 lines (27 loc) · 1.23 KB
/
iframe.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IFrame</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="nav-bar">
<button type="button" class="nav-button" onclick="window.location.assign('./index.html')">Index</button>
<button type="button" class="nav-button" onclick="window.location.assign('./seamless.html')">Seamless View Test</button>
<button type="button" class="nav-button" onclick="window.location.assign('./iframe.html')">IFrame Tester</button>
<button type="button" class="nav-button" onclick="window.location.assign('./eligibility-check.html')">Eligibility Check</button>
</div>
<div>
<script src="iframe-app.js" type="text/javascript"></script>
<div class="iframe-link-launcher">
<label for="launch-link-input">Launch Link: </label>
<input id="launch-link-input" type="text">
</div>
<button type="button" class="iframe-button" onclick="launchLink('location_assign')">Launch with "window.location.assign()"</button>
<iframe id="frame" src="./iframe-content.html">
</iframe>
</div>
</body>
</html>