Skip to content

Instantly share code, notes, and snippets.

@devdays
Last active August 29, 2015 14:15
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 devdays/2cf45230040e66b29cf5 to your computer and use it in GitHub Desktop.
Save devdays/2cf45230040e66b29cf5 to your computer and use it in GitHub Desktop.
Page to host clicker widget
<!DOCTYPE html>
<html>
<head>
<title>Clicker</title>
</head>
<body>
<div id="myClicker">
</div>
<script src="Scripts/jquery-2.1.3.js"></script>
<script src="Scripts/jquery-ui-1.11.3.js"></script>
<script src="Scripts/clicker/jquerywidget-clicker-0.0.1.js"></script>
<script>
$("#myClicker").clicker( { startingValue: 4 } );
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment