Skip to content

Instantly share code, notes, and snippets.

<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Which Browser?</title>
</head>
<body>
<p>You are using <span id="browser"></span> <span id="version"></span> on <span id="os"></span></p>
<script type="text/javascript" src="browserdetect.js"></script>
<script type="text/javascript">
@dieseltravis
dieseltravis / cookiebot.js
Last active December 24, 2015 01:29 — forked from jeresig/cookiebot.js
cookie clicker bot, you're too much fun
CookieBot = {
click: function clicker() {
clearInterval(this.clickInterval);
this.clickInterval = setInterval(function clickIntervaller() {
// Click the large cook as fast as possible!
$("#bigCookie").click();
}, 1);
// limit this to 15 for hidden achievement?
//TODO: test for achievement or clicks >= 15 use above, otherwise use below