-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathframe1.html
88 lines (71 loc) · 2.56 KB
/
frame1.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="Sample Web Application for Test Automation">
<meta name="author" content="Dinesh Velhal">
<title>Frame1 (ID=frame1)</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="css/all.css">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Material Design Bootstrap
<link href="css/mdb.min.css" rel="stylesheet">-->
<!-- Your custom styles (optional)
<link href="css/style.css" rel="stylesheet">-->
</head>
<body>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<!-- Brand/logo -->
<a class="navbar-brand" href="#">Frame1 (ID=frame1)</a>
</nav>
<br>
<br>
<div class="container text-center">
<div class="row">
<div class="col-sm-6">
<div class="embed-responsive embed-responsive-4by3 shadow">
<iframe class="embed-responsive-item" src="frame2.html" id="frame2"></iframe>
</div>
</div>
<div class="col-sm-6">
<div class="embed-responsive embed-responsive-4by3 shadow">
<iframe class="embed-responsive-item" src="frame3.html" id="frame3"></iframe>
</div>
</div>
</div>
<br><br>
<div class="row">
<div class="col">
<button type="button" class="btn btn-primary" id="click_me_1">Click Me 1</button>
</div>
</div>
<div class="row">
<div class="col">
<br>
<h3>Switch to the frames above and click the buttons.</h3>
</div>
</div>
</div>
<!-- SCRIPTS -->
<!-- JQuery -->
<script type="text/javascript" src="js/jquery-3.4.1.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="js/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- MDB core JavaScript
<script type="text/javascript" src="js/mdb.min.js"></script>-->
<script>
$(document).ready(function () {
$("#click_me_1").click(function () {
$(this)
.html("Clicked")
.attr("class", "btn btn-secondary");
});
});
</script>
</body>
</html>