Skip to content

Instantly share code, notes, and snippets.

@iamntz
Created September 2, 2011 11:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamntz/1188391 to your computer and use it in GitHub Desktop.
Save iamntz/1188391 to your computer and use it in GitHub Desktop.
#############################################################
###
### Auto update titlu pagina (jQuery, PHP) (php)
### http://scripts.ddumi.com/2011-09-02/php-code/105.html
### http://blog.ddumi.com/diverse/2011/09/02/auto-update-titlu-pagina-jquery-php.html
###
#############################################################
<script type="text/javascript">
$(document).ready(function() {
var updateTitluPagina = window.setInterval( function(){ $('title').load('count_alerts.php'); }, 10000 );
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment