Created
June 16, 2016 13:03
-
-
Save zerodahero/e130e4cd8e26f4d30b21ac07f820a36e to your computer and use it in GitHub Desktop.
Foundation 6 Sites Time Tooltip
This file contains 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
// Most likely in app.js | |
$('time').each(function(){ | |
new Foundation.Tooltip($(this), {tipText: $(this).attr('datetime')}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment