Last active
October 15, 2015 18:53
-
-
Save shealan/df51cf178886f9d81c74 to your computer and use it in GitHub Desktop.
How to embed dates into your website.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="gigs"></div> | |
<script> | |
$(document).ready(function() { | |
$('#gigs').beatnode({ | |
username: 'myname', | |
dates: 'MMM Do, YYYY', | |
template: '#gigs-template' | |
}); | |
}); | |
</script> | |
<script src="http://embed.beatnode.com/jquery.min.js"></script> | |
<script src="http://embed.beatnode.com/jquery.beatnode.min.js"></script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment