Created
February 2, 2013 00:08
-
-
Save Kolesias123/4695090 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// jQuery: Ejecutar en cuanto este listo el sitio web... | |
$(document).on('ready', function() | |
{ | |
// Ejecutamos la función UpdateBroadcaster() cada 5 segundos. | |
setInterval(UpdateBroadcaster, 5000); | |
// La ejecutamos ahora solo para actualizar el mensaje. | |
UpdateBroadcaster(); | |
}); | |
function UpdateBroadcaster() | |
{ | |
// Obtenemos el contenido del archivo ./get.php | |
$.get('./get.php', function(data) | |
{ | |
// Actualizamos el <i> que esta dentro de <div id="slogan"> | |
$('#slogan i').html(data); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment