1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 | <div class="container"></div>
<div class="bar">
<button class="bar button" onclick="openTab('links1')">MY LINKS-1</button>
<button class="bar button" onclick="openTab('links2')">MY LINKS-2</button>
<button class="bar button" onclick="openTab('links3')">MY LINKS-3</button>
</div>
<div class="container tab" id="links1">
<iframe frameborder="0" height="760" src="https://docs.google.com/spreadsheets/d/1250n3upxFNUwA50hSL73OZK0fvXv0CHmFF1OTE_443M/pubhtml?gid=1951055053&single=true&widget=true&headers=false" width="930"></iframe></div>
<div class="container tab" id="links2" style="display: none;">
<iframe frameborder="0" height="760" src="https://docs.google.com/spreadsheets/d/1mdEE_FkslrVn_TEgWRdVUdp7g4rnJ9r4ge4jgglv_YA/pubhtml?gid=25900094&single=true&widget=true&headers=false" width="930"></iframe></div>
<div class="container tab" id="links3" style="display: none;">
<iframe frameborder="0" height="760" src="https://docs.google.com/spreadsheets/d/1aLXP3gygj2TILXQkEmfF-CBe5sqp7y5zlLk92pQU1tE/pubhtml?widget=true&headers=false" width="930"></iframe></div>
<script>
function openTab(tabName) {
var i;
var x = document.getElementsByClassName("tab");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";}
document.getElementById(tabName).style.display = "block";}
</script>
|