06/05/2024
function refresh() { $.ajax({ url: 'programacao_player.php', // this should grab only #table element... success: function(data) { // ...and it will insert it inside #result element $('#result').html(data); setTimeout(refresh, 2000); } }); } setTimeout(refresh, 2000);
 Estúdio Ao Vivo
var player = videojs('videojs');
X