Skip to content

Instantly share code, notes, and snippets.

@cxdy
Created October 5, 2014 00:07
Show Gist options
  • Save cxdy/f6e6909820850a342789 to your computer and use it in GitHub Desktop.
Save cxdy/f6e6909820850a342789 to your computer and use it in GitHub Desktop.
Using Scrobbl.in
<div class="lastfm"></div>
<script>
var scrobblinRefreshTimer = 10;
var scrobblinFileLocation = 'scrobblin.php';
$(document).ready(function() {
refreshScrobblin();
setInterval(function() { refreshScrobblin() }, scrobblinRefreshTimer * 1000);
});
function refreshScrobblin() {
$('.lastfm').load(scrobblinFileLocation);
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment