Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ramonfincken/d8c20041410f0c5c8564c2c2931380d3 to your computer and use it in GitHub Desktop.
Save ramonfincken/d8c20041410f0c5c8564c2c2931380d3 to your computer and use it in GitHub Desktop.
Random people viewing
X are currently looking at this product.
jQuery(function() {
setInterval(function() {
var myDiv = jQuery("#viewing_now");
var myRand = Math.floor(Math.random() * 16) + 8;
myDiv.text(myRand);
}, 5000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment