HTML - Ver contenido pestañas correctamente

 
Vista:
Imágen de perfil de Hugo
Val: 20
Ha disminuido 1 puesto en HTML (en relación al último mes)
Gráfica de HTML

Ver contenido pestañas correctamente

Publicado por Hugo (10 intervenciones) el 30/12/2018 16:06:57
Buenas
Tengo el codigo que pongo aquí debajo, el caso es que quiero, que imagino que se puede, que se abra cada una de las pestañas al pulsar sobre ella y se vea ese contenido. He tratado de hacerlo a partir de la parte de la programación, que si funciona correctamente, pero evidentemente hay algo mal que no funciona correctamente.
Si alguien me pudiera ayudar le estaria muy agradecido.
Pongo lo que tengo de codigo aqui debajo
¡Muchisimas gracias de antemano!
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
<html>
<head>
<style>
body {font-family: Poppins;}
 
/* Style the tab */
div.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}
 
div.tab2 {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}
 
 
#main-wrapper {
    width: 100%;
}
 
#sidebar-wrapper {
    display: none;
}
 
/* Style the buttons inside the tab */
div.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}
div.tab2 button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}
 
/* Change background color of buttons on hover */
div.tab button:hover {
    background-color: #ddd;
}
 
div.tab2 button:hover {
    background-color: #ddd;
}
 
/* Create an active/current tablink class */
div.tab button.active {
    background-color: #ccc;
}
 
div.tab2 button.active {
    background-color: #ccc;
}
 
 
/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}
 
table {border-collapse:collapse}
tr {border: 0.5px solid #e9e9e9;}
 
table tr:hover {
  background-color: #fafafa;
  cursor: pointer;
}
 
 
.tab2content {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}
</style>
 
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript">
  $(document).ready(function(){
    var w=$(window).width();
    if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
      $('.tablinks').each(function(index,el){
        var d=el.textContent;
        el.textContent=d.substring(0,1);
      });
    }
  });
</script>
 
</head>
<body>
 
<div class="tab">
  <button class="tablinks" id="En Directo" onclick="openCity(event, 'endirecto')">En Directo</button>
  <button class="tablinks" id="Programacion" onclick="openCity(event, 'programacion')">Programación</button>
  <button class="tablinks" id="A La Carta" onclick="openCity(event, 'alacarta')">A la Carta</button>
</div>
<div class="tabcontent" id="endirecto">
</div>
<div class="tabcontent" id="programacion">
<div class="tab">
  <button class="tablinks" id="LunesDay" onclick="openCity(event, 'Lunes')">Lunes</button>
  <button class="tablinks" id="MartesDay" onclick="openCity(event, 'Martes')">Martes</button>
  <button class="tablinks" id="MiércolesDay" onclick="openCity(event, 'Miércoles')">Miércoles</button>
  <button class="tablinks" id="JuevesDay" onclick="openCity(event, 'Jueves')">Jueves</button>
  <button class="tablinks" id="ViernesDay" onclick="openCity(event, 'Viernes')">Viernes</button>
  <button class="tablinks" id="SábadoDay" onclick="openCity(event, 'Sábado')">Sábado</button>
  <button class="tablinks" id="DomingoDay" onclick="openCity(event, 'Domingo')">Domingo</button>
</div>
<div class="tabcontent" id="endirecto">
</div>
 
<div class="tabcontent" id="programacion">
<div class="tabcontent" id="Lunes">
<h3>
LUNES, 3 DE DICIEMBRE DE 2018</h3>
<table cellpadding="0" cellspacing="0" style="margin-left: auto; margin-right: auto; margin-top: 0px; text-align: left; width: 100%;">
<tbody>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 00:00h a 8:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Éxitos sin parar</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/MorningActual" imageanchor="1"><img border="0" src="http://img.fenixzone.net/i/BlPOdLq.jpeg" title="Actuality Morning" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/MorningActual">
<span style="color: black; font-family: Poppins; font-size: normal;">De 8:00h a 11:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Actuality Morning</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Despiértate con nosotros</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/AngelRamirezDJ" imageanchor="1"><img border="0" src="http://img.fenixzone.net/i/ga9cGiM.jpeg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/AngelRamirezDJ">
<span style="color: black; font-family: Poppins; font-size: normal;">De 11:00h a 13:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Ángel Ramírez</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/JavierJoseGM" imageanchor="1"><img border="0" src="https://1.bp.blogspot.com/-hV5yzLChrnM/WwKvbB3fUuI/AAAAAAAALqc/t4_dCjNPqs83nb88iCZ2cQ492vwVRANUgCLcBGAs/s1600/javi.jpg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/JavierJoseGM">
<span style="color: black; font-family: Poppins; font-size: normal;">De 13:00h a 16:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Javier Guerrero</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/MiguelPuentesDJ" imageanchor="1"><img border="0" src="https://1.bp.blogspot.com/-yoUyELiHqWc/Womg-x9jirI/AAAAAAAALBE/Vc47C7bIaGAedDEnTXyJVmNeKELvKYegwCLcBGAs/s1600/MIGUEL.jpg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/MiguelPuentesDJ">
<span style="color: black; font-family: Poppins; font-size: normal;">De 16:00h a 18:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Miguel Puentes</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Night Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 18:00h a 20:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">¡La mejor música!</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Night Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 20:00h a 23:59h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Night Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Los mejores temazos NON-STOP</span></a></div>
</td></tr>
</tbody></table>
</div>
<div class="tabcontent" id="Martes">
  <h3>
MARTES, 4 DE DICIEMBRE DE 2018</h3>
<table cellpadding="0" cellspacing="0" style="margin-left: auto; margin-right: auto; margin-top: 0px; text-align: left; width: 100%;">
<tbody>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 00:00h a 8:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Éxitos sin parar</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/MorningActual" imageanchor="1"><img border="0" src="http://img.fenixzone.net/i/BlPOdLq.jpeg" title="Actuality Morning" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/MorningActual">
<span style="color: black; font-family: Poppins; font-size: normal;">De 8:00h a 11:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Actuality Morning</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Despiértate con nosotros</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/AngelRamirezDJ" imageanchor="1"><img border="0" src="http://img.fenixzone.net/i/ga9cGiM.jpeg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/AngelRamirezDJ">
<span style="color: black; font-family: Poppins; font-size: normal;">De 11:00h a 13:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Ángel Ramírez</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/JavierJoseGM" imageanchor="1"><img border="0" src="https://1.bp.blogspot.com/-hV5yzLChrnM/WwKvbB3fUuI/AAAAAAAALqc/t4_dCjNPqs83nb88iCZ2cQ492vwVRANUgCLcBGAs/s1600/javi.jpg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/JavierJoseGM">
<span style="color: black; font-family: Poppins; font-size: normal;">De 13:00h a 16:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Javier Guerrero</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/MiguelPuentesDJ" imageanchor="1"><img border="0" src="https://1.bp.blogspot.com/-yoUyELiHqWc/Womg-x9jirI/AAAAAAAALBE/Vc47C7bIaGAedDEnTXyJVmNeKELvKYegwCLcBGAs/s1600/MIGUEL.jpg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/MiguelPuentesDJ">
<span style="color: black; font-family: Poppins; font-size: normal;">De 16:00h a 18:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Miguel Puentes</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Night Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 18:00h a 20:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">¡La mejor música!</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Night Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 20:00h a 23:59h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Night Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Los mejores temazos NON-STOP</span></a></div>
</td></tr>
</tbody></table>
</div>
<div class="tabcontent" id="Miércoles">
  <h3>
MIÉRCOLES, 5 DE DICIEMBRE DE 2018</h3>
<table cellpadding="0" cellspacing="0" style="margin-left: auto; margin-right: auto; margin-top: 0px; text-align: left; width: 100%;">
<tbody>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 00:00h a 8:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Éxitos sin parar</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/MorningActual" imageanchor="1"><img border="0" src="http://img.fenixzone.net/i/BlPOdLq.jpeg" title="Actuality Morning" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/MorningActual">
<span style="color: black; font-family: Poppins; font-size: normal;">De 8:00h a 11:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Actuality Morning</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Despiértate con nosotros</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/AngelRamirezDJ" imageanchor="1"><img border="0" src="http://img.fenixzone.net/i/ga9cGiM.jpeg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/AngelRamirezDJ">
<span style="color: black; font-family: Poppins; font-size: normal;">De 11:00h a 13:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Ángel Ramírez</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/JavierJoseGM" imageanchor="1"><img border="0" src="https://1.bp.blogspot.com/-hV5yzLChrnM/WwKvbB3fUuI/AAAAAAAALqc/t4_dCjNPqs83nb88iCZ2cQ492vwVRANUgCLcBGAs/s1600/javi.jpg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/JavierJoseGM">
<span style="color: black; font-family: Poppins; font-size: normal;">De 13:00h a 16:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Javier Guerrero</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/MiguelPuentesDJ" imageanchor="1"><img border="0" src="https://1.bp.blogspot.com/-yoUyELiHqWc/Womg-x9jirI/AAAAAAAALBE/Vc47C7bIaGAedDEnTXyJVmNeKELvKYegwCLcBGAs/s1600/MIGUEL.jpg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/MiguelPuentesDJ">
<span style="color: black; font-family: Poppins; font-size: normal;">De 16:00h a 18:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Miguel Puentes</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Night Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 18:00h a 20:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">¡La mejor música!</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Night Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 20:00h a 23:59h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Night Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Los mejores temazos NON-STOP</span></a></div>
</td></tr>
</tbody></table>
</div>
<div class="tabcontent" id="Jueves">
  <h3>
JUEVES, 6 DE DICIEMBRE DE 2018</h3>
<table cellpadding="0" cellspacing="0" style="margin-left: auto; margin-right: auto; margin-top: 0px; text-align: left; width: 100%;">
<tbody>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 00:00h a 8:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Éxitos sin parar</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/MorningActual" imageanchor="1"><img border="0" src="http://img.fenixzone.net/i/BlPOdLq.jpeg" title="Actuality Morning" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/MorningActual">
<span style="color: black; font-family: Poppins; font-size: normal;">De 8:00h a 11:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Actuality Morning</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Despiértate con nosotros</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/AngelRamirezDJ" imageanchor="1"><img border="0" src="http://img.fenixzone.net/i/ga9cGiM.jpeg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/AngelRamirezDJ">
<span style="color: black; font-family: Poppins; font-size: normal;">De 11:00h a 13:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Ángel Ramírez</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/JavierJoseGM" imageanchor="1"><img border="0" src="https://1.bp.blogspot.com/-hV5yzLChrnM/WwKvbB3fUuI/AAAAAAAALqc/t4_dCjNPqs83nb88iCZ2cQ492vwVRANUgCLcBGAs/s1600/javi.jpg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/JavierJoseGM">
<span style="color: black; font-family: Poppins; font-size: normal;">De 13:00h a 16:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Javier Guerrero</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/MiguelPuentesDJ" imageanchor="1"><img border="0" src="https://1.bp.blogspot.com/-yoUyELiHqWc/Womg-x9jirI/AAAAAAAALBE/Vc47C7bIaGAedDEnTXyJVmNeKELvKYegwCLcBGAs/s1600/MIGUEL.jpg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/MiguelPuentesDJ">
<span style="color: black; font-family: Poppins; font-size: normal;">De 16:00h a 18:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Miguel Puentes</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Night Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 18:00h a 20:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">¡La mejor música!</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Night Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 20:00h a 23:59h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Night Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Los mejores temazos NON-STOP</span></a></div>
</td></tr>
</tbody></table>
</div>
<div class="tabcontent" id="Viernes">
  <h3>
VIERNES, 7 DE DICIEMBRE DE 2018</h3>
<table cellpadding="0" cellspacing="0" style="margin-left: auto; margin-right: auto; margin-top: 0px; text-align: left; width: 100%;">
<tbody>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 00:00h a 8:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Éxitos sin parar</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/MorningActual" imageanchor="1"><img border="0" src="http://img.fenixzone.net/i/BlPOdLq.jpeg" title="Actuality Morning" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/MorningActual">
<span style="color: black; font-family: Poppins; font-size: normal;">De 8:00h a 11:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Actuality Morning</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Despiértate con nosotros</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/AngelRamirezDJ" imageanchor="1"><img border="0" src="http://img.fenixzone.net/i/ga9cGiM.jpeg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/AngelRamirezDJ">
<span style="color: black; font-family: Poppins; font-size: normal;">De 11:00h a 13:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Ángel Ramírez</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/JavierJoseGM" imageanchor="1"><img border="0" src="https://1.bp.blogspot.com/-hV5yzLChrnM/WwKvbB3fUuI/AAAAAAAALqc/t4_dCjNPqs83nb88iCZ2cQ492vwVRANUgCLcBGAs/s1600/javi.jpg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/JavierJoseGM">
<span style="color: black; font-family: Poppins; font-size: normal;">De 13:00h a 16:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Javier Guerrero</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/MiguelPuentesDJ" imageanchor="1"><img border="0" src="https://1.bp.blogspot.com/-yoUyELiHqWc/Womg-x9jirI/AAAAAAAALBE/Vc47C7bIaGAedDEnTXyJVmNeKELvKYegwCLcBGAs/s1600/MIGUEL.jpg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/MiguelPuentesDJ">
<span style="color: black; font-family: Poppins; font-size: normal;">De 16:00h a 18:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Miguel Puentes</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Night Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 18:00h a 22:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">¡La mejor música!</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/113streetmusic" imageanchor="1"><img border="0" src="https://4.bp.blogspot.com/-oYkBXpCqKsE/WiKIR8yN-AI/AAAAAAAAJJU/2wRQ5mjBIAYNI2QCbpchy5twZTGFh7jrACLcBGAs/s1600/j-8LOrQn_400x400.jpg" title="13th's Show" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/113streetmusic">
<span style="color: black; font-family: Poppins; font-size: normal;">De 22:00h a 23:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">113th's Show</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Lo mejor de la música electrónica</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Night Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 23:00h a 23:59h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Night Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Los mejores temazos NON-STOP</span></a></div>
</td></tr>
</tbody></table>
</div>
<div class="tabcontent" id="Sábado">
  <h3>
SÁBADO, 8 DE DICIEMBRE DE 2018</h3>
<table cellpadding="0" cellspacing="0" style="margin-left: auto; margin-right: auto; margin-top: 0px; text-align: left; width: 100%;">
<tbody>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 00:00h a 12:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Éxitos sin parar</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/pablogallinarFM" imageanchor="1"><img border="0" src="https://2.bp.blogspot.com/-0oZxEYx97js/WvAI3sm-92I/AAAAAAAALiM/AusNZQeWhnQS_lWlHPzqLdE9LeUicQabgCLcBGAs/s1600/PABLOEQUIPO.jpg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/pablogallinarFM">
<span style="color: black; font-family: Poppins; font-size: normal;">De 12:00h a 15:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Pablo Gallinar</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/actualityfm_es" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/actualityfm_es">
<span style="color: black; font-family: Poppins; font-size: normal;">De 15:00h a 19:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">¡La mejor música!</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/DIVEKmusic" imageanchor="1"><img border="0" src="http://img.fenixzone.net/i/SZ2EYrC.png" title="New Vibes" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/DIVEKmusic">
<span style="color: black; font-family: Poppins; font-size: normal;">De 19:00h a 20:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size:  large; text-transform: uppercase;">New Vibes</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Divek</span></a>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/elcofresuena" imageanchor="1"><img border="0" src="https://1.bp.blogspot.com/-PGkeFhc1SSE/WiJ86MZHgeI/AAAAAAAAJIs/8q94Yqa8lRoTvNKnilbZKKEU-mMA8Gc4ACLcBGAs/s1600/20622315_1393366237398635_5198550253329893024_n.jpg" title="El Cofre Suena" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/elcofresuena">
<span style="color: black; font-family: Poppins; font-size: normal;">De 20:00h a 22:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">El Cofre Suena</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Sueños, cultura y conocimiento</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/glasshat" imageanchor="1"><img border="0" src="https://1.bp.blogspot.com/-i4jYq5fa_n8/Wz0QgF4r1SI/AAAAAAAAMQo/oAF1FTD9JjInPFl2KkTF7oKz3ITg9a4PQCLcBGAs/s1600/portada%2Bcon%2Blogo%2B%25C3%25A1lter%2Bego.png" title="Álter Ego Radio Show" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/glasshat">
<span style="color: black; font-family: Poppins; font-size: normal;">De 22:00h a 23:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Álter Ego Radio Show</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con DJ Glass Hat</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Night Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 23:00h a 23:59h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Night Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Los mejores temazos NON-STOP</span></a></div>
</td></tr>
</tbody></table>
</div>
<div class="tabcontent" id="Domingo">
  <h3>
DOMINGO, 9 DE DICIEMBRE DE 2018</h3>
<table cellpadding="0" cellspacing="0" style="margin-left: auto; margin-right: auto; margin-top: 0px; text-align: left; width: 100%;">
<tbody>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="http://actualityfm.es/" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="http://actualityfm.es/">
<span style="color: black; font-family: Poppins; font-size: normal;">De 00:00h a 12:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Éxitos sin parar</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/pablogallinarFM" imageanchor="1"><img border="0" src="https://2.bp.blogspot.com/-0oZxEYx97js/WvAI3sm-92I/AAAAAAAALiM/AusNZQeWhnQS_lWlHPzqLdE9LeUicQabgCLcBGAs/s1600/PABLOEQUIPO.jpg" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/pablogallinarFM">
<span style="color: black; font-family: Poppins; font-size: normal;">De 12:00h a 15:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Pablo Gallinar</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/actualityfm_es" imageanchor="1"><img border="0" src="https://scontent.fmad3-5.fna.fbcdn.net/v/t1.0-9/30265171_1183454711791013_3985753608015577088_n.png?_nc_cat=0&oh=8cc6d5d01876cfff037fd83761e26e2d&oe=5C102223" title="Fórmula Actuality" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/actualityfm_es">
<span style="color: black; font-family: Poppins; font-size: normal;">De 15:00h a 20:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Fórmula Actuality</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">¡La mejor música!</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/Desactualizados" imageanchor="1"><img border="0" src="http://img.fenixzone.net/i/1sncvbG.jpeg" title="Desactualizados" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/Desactualizados">
<span style="color: black; font-family: Poppins; font-size: normal;">De 20:00h a 22:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size: large; text-transform: uppercase;">Desactualizados</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Ángel Ramírez</span></a></div>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/ZORTNESSMUSIC" imageanchor="1"><img border="0" src="http://img.fenixzone.net/i/eNOBcD5.png" title="Feel The Power" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/ZORTNESSMUSIC">
<span style="color: black; font-family: Poppins; font-size: normal;">De 22:00h a 23:00h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size:  large; text-transform: uppercase;">Feel The Power</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Zortness</span></a>
</td></tr>
<tr><td width="90px"><div style="margin-left: 10px; text-align: left;">
<a href="https://twitter.com/pastoriousdj" imageanchor="1"><img border="0" src="https://1.bp.blogspot.com/-39SdOnYCm7I/WwHX-_HXpVI/AAAAAAAALqQ/L3PK-cXaVKkEKbzK7reUOuisRKripYMLQCLcBGAs/s1600/Pastorious%2BCover.png" title="Pastorious Essentials" /></a></div>
</td><td valign="top"><div style="margin-left: 10px; margin-top: 10px; text-align: left;">
<a href="https://twitter.com/pastoriousdj">
<span style="color: black; font-family: Poppins; font-size: normal;">De 23:00h a 23:59h</span></br>
<span style="color: #ff0040; font-family: Poppins; font-size:  large; text-transform: uppercase;">Pastorious Essentials</span></br>
<span style="color: black; font-family: Poppins; font-size: normal;">Con Pastorious</span></a></div>
</td></tr>
</tbody></table>
</div>
</div>

<div class="tabcontent" id="alacarta">
</div>

<script>
// Get the element with id="defaultOpen" and click on it
// document.getElementById("defaultOpen").click();
var d = new Date();
  var weekday = new Array(7);
  weekday[0] =  "Domingo";
  weekday[1] = "Lunes";
  weekday[2] = "Martes";
  weekday[3] = "Miércoles";
  weekday[4] = "Jueves";
  weekday[5] = "Viernes";
  weekday[6] = "Sábado";
  var n = weekday[d.getDay()];
  document.getElementById(n+"Day").click();
</script>
     
</body>
</html>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
Imágen de perfil de Xavi
Val: 159
Bronce
Ha mantenido su posición en HTML (en relación al último mes)
Gráfica de HTML

Ver contenido pestañas correctamente

Publicado por Xavi (57 intervenciones) el 30/12/2018 18:51:19
Hola Hugo, en tu código falta la definición de la función openCity()...

La puedes adjuntar?
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de Hugo
Val: 20
Ha disminuido 1 puesto en HTML (en relación al último mes)
Gráfica de HTML

Ver contenido pestañas correctamente

Publicado por Hugo (10 intervenciones) el 30/12/2018 20:40:39
Si, perdón, que se me ha olvidado ponerlo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
function openCity(evt, cityName) {
    var i, tabcontent, tablinks;
    tabcontent = document.getElementsByClassName("tabcontent");
    for (i = 0; i < tabcontent.length; i++) {
        tabcontent[i].style.display = "none";
    }
    tablinks = document.getElementsByClassName("tablinks");
    for (i = 0; i < tablinks.length; i++) {
        tablinks[i].className = tablinks[i].className.replace(" active", "");
    }
    document.getElementById(cityName).style.display = "block";
    evt.currentTarget.className += " active";
}
</script>

Mil gracias!!!
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de xve
Val: 1.144
Oro
Ha mantenido su posición en HTML (en relación al último mes)
Gráfica de HTML

Ver contenido pestañas correctamente

Publicado por xve (1543 intervenciones) el 31/12/2018 08:56:47
Hola Hugo, he probado tu código, y he visto que tienes repetido le id="programacion", el id="endirecto", y no deberían haber id's repetidos en una misma pagina web.

La otra cosa que veo, es que cuando pulsas un dia de la semana, en tu código js, cierras ese menú de los dias de la semana... se ve un poco raro... no se si es ese el problema que tienes.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de Hugo
Val: 20
Ha disminuido 1 puesto en HTML (en relación al último mes)
Gráfica de HTML

Ver contenido pestañas correctamente

Publicado por Hugo (10 intervenciones) el 31/12/2018 10:50:43
Vale, esque es cierto, eso no deberia pasar, de hecho en la parte que tengo solo con la programación no pasa, sabes como podria arreglarlo?
Mil gracias por toda la ayuda!!!
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar