-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (111 loc) · 3.17 KB
/
index.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google Tag Manager -->
<!-- End Google Tag Manager -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table with Dynamic Popup</title>
<style>
/* CSS for the popup */
.popup {
position: relative;
display: inline-block;
cursor: pointer;
}
.popup-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 120px;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
padding: 12px 16px;
z-index: 1;
}
.block {
width: 60px;
height: 30px; /* Adjust height as needed */
}
.popup:hover .popup-content {
display: block;
}
</style>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<!-- End Google Tag Manager (noscript) -->
<table border="1">
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Options</th>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>
<div class="popup" onclick="showOptions('options1')">...</div>
<div id="options1" class="popup-content">
<p>Content for Option 1</p>
<p>Content for Option 2</p>
<p>Content for Option 3</p>
</div>
</td>
</tr>
<tr>
<td>Data 3</td>
<td>Data 4</td>
<td>
<div class="popup" onclick="showOptions('options2')">...</div>
<div id="options2" class="popup-content">
<p>Different Content for Option 1</p>
<p>Different Content for Option 2</p>
<p>Different Content for Option 3</p>
</div>
</td>
</tr>
</table>
<div>
<h5 class="pendo-resource-center-badge-notification-bubble" >who are you man</h5>
</div>
</section>
<div >
<button data-testid="action-plan-cell-action-ratings" > click me </button>
</div>
<div >
<button data-testid="action-plan-ratings-button-RequestRating" > Dont me </button>
</div>
<iframe width="560" height="315" src="https://www.youtube.com/embed/y0sF5xhGreA?si=rpWz5dgrqO7pcgtW" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<label for="dog-names">Choose a dog name:</label>
<select name="dog-names" id="dog-names">
<option value="rigatoni">Rigatoni</option>
<option value="dave">Dave</option>
<option value="pumpernickel">Pumpernickel</option>
<option value="reeses">Reeses</option>
</select>
<script>
function showOptions(id) {
var content = document.getElementById(id);
content.style.display = "block";
}
</script>
<button type="button" class="block">
<a href="testing.html">Testing</a>
</button>
<button type="button" class="block">
<a href="Toggle.html">Testing</a>
</button>
<section>
<script>
// Function to show the Resource Center
function openResourceCenter() {
pendo.showGuideById('lYNTfdIt4to7sJgcAKZ-10vYhZw');
}
// Event listener for when the page loads
window.onload = function() {
openResourceCenter();
};
</script>
<script src="./pendo/init.js"></script>
</body>
</html>