JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://urdt.lv/universal-radio-v3/js/opentip-prototype-excanvas.js"></script>
<table id="universal-radio-program" title="Uzej ar pelīti uz nosaukumu, lai redzētu aprakstu...">
<thead>
<tr><th> </th><th scope="col">Pirmdiena</th><th scope="col">Otrdiena</th><th scope="col">Trešdiena</th><th scope="col">Ceturtdiena</th><th scope="col">Piektdiena</th><th scope="col">Sestdiena</th><th scope="col">Svētdiena</th><th> </th></tr>
</thead>
<tbody>
<tr>
<td>00</td>
<td title="Dance / Hands Up, Trance, New Tunes..." rowspan="2" colspan="4">Prepare for Morning</td>
<td title="Presents by Universal Radio X selection..." rowspan="12">Take The Chance Of Dance with Universal Radio</td>
<td title="Universal Radio DJ Team Lives..." rowspan="4" colspan="2">URDT Live Sets</td>
<td><strong>00</strong></td>
</tr>
<tr>
<td>01</td>
<td>01</td>
</tr>
<tr>
<td>02</td>
<td title="Progressive, Trance, Techtrance, Hard Trance tunes..." rowspan="2" colspan="4">Trance Edition!</td>
<td>02</td>
</tr>
<tr>
<td>03</td>
<td>03</td>
</tr>
<tr>
<td>04</td>
<td title="Rave, Happy Hardcore tunes..." rowspan="2" colspan="4">Rave Nation!</td>
<td title="Live Mixes, Live Sets, Mixed Cd's..." rowspan="3" colspan="2">Live Sets</td>
<td>04</td>
</tr>
<tr>
<td>05</td>
<td>05</td>
</tr>
<tr>
<td>06</td>
<td title="Eurodance, Dance, Dance Classic tunes..." colspan="4">Eurodance Members</td>
<td>06</td>
</tr>
<tr>
<td>07</td>
<td title="Dance / Hands Up, Dance / Hands Up Classic tunes..." colspan="4">Dance Selection!</td>
<td title="Techno, Hard Techno, Schranz tunes..." colspan="2">Techno Time</td>
<td>07</td>
</tr>
<tr>
<td>08</td>
<td title="New tunes, Hot tunes..." rowspan="4" colspan="4">Wake Up Power!</td>
<td title="Loading for saturday feeling..." rowspan="6">Saturday Warm Up</td>
<td title="Presents by Universal Radio X selection..." rowspan="6">Take The Chance Of Dance with Universal...

CSS

#universal-radio-program {
margin: 0;
padding: 0;
width: 942px;
/*height: 500px;*/
    /*font-size: 15px;*/
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.7em;
    text-align:center;
    border-collapse:collapse;
}


#universal-radio-program td {
vertical-align: middle !important;
}
	
#universal-radio-program thead th, #universal-radio-program tfoot td {
color: #000;
font-size: 12px;
    padding: 2px 2px;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 1px 1px 1px #fff;
    border-bottom: 5px solid #444;
vericlal-align: middle;
text-align: center;
margin: auto;
}

#universal-radio-program thead th:empty{
    background:transparent;
    border:none;
}

/* kollonu nosaukumu krasas */

#universal-radio-program thead :nth-child(2),
#universal-radio-program tfoot :nth-child(2){
    background-color: #7FD2FF;
}
#universal-radio-program tfoot :nth-child(2){
    -moz-border-radius:0px 0px 0px 5px;
    -webkit-border-bottom-left-radius:5px;
    border-bottom-left-radius:5px;
}
#universal-radio-program thead :nth-child(2){
    -moz-border-radius:5px 0px 0px 0px;
    -webkit-border-top-left-radius:5px;
    border-top-left-radius:5px;
}

#universal-radio-program thead :nth-child(3),
#universal-radio-program tfoot :nth-child(3){
    background-color: #45A8DF;
	
}

#universal-radio-program thead :nth-child(4),
#universal-radio-program tfoot :nth-child(4){
    background-color: #2388BF;
}

#universal-radio-program thead :nth-child(5),
#universal-radio-program tfoot :nth-child(5){
    background-color: #096A9F;
	
}

#universal-radio-program thead :nth-child(6),
#universal-radio-program tfoot :nth-child(6){
    background-color: #2388BF;
	padding: 0 1px;
}

#universal-radio-program thead :nth-child(7),
#universal-radio-program tfoot :nth-child(7){
    background-color: #45A8DF;
}

#universal-radio-program thead :nth-child(8),
#universal-radio-program tfoot :nth-child(8){
    background-color: #7FD2FF;
}

#universal-radio-program...

JavaScript

Opentip.debug = true;

var myOpentip = $$("#universal-radio-program td[title]").each(function(tagElement) {
urtitle = tagElement.readAttribute('title');
new Opentip(tagElement, { title: urtitle });
});