-
Notifications
You must be signed in to change notification settings - Fork 42
Home
James Pederson edited this page May 17, 2014
·
15 revisions
This wiki is designed to help you learn how to integrate Accrue.js into your project. Use the menu at the right to navigate the documentation.
- Include jQuery (recommend latest) and
jquery.accrue.min.js
. This is the only file you need from the repo - the CSS is only for the demo page. - Create a calculator div, select it, and call the accrue function on it. Like so:
<div class="calculator"></div>
<script>
$(document).ready(function(){
$(".calculator").accrue();
});
</script>
Have a cool feature you added to Accrue? Fork me and submit a pull request, I'll certainly accept any improvements that I agree would be useful to other developers.
See it in action at AccrueJS.com. Built with care for free by James Pederson.