Created
June 19, 2014 11:26
-
-
Save hedgehog1029/eb055c7ef96a6173718e to your computer and use it in GitHub Desktop.
SociaMe code
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
<html> | |
<head> | |
<script type="text/javascript" src ="https://cdn.firebase.com/js/client/1.0.15/firebase.js"></script> | |
<script type="text/javascript"> | |
var planner = new Firebase("https://sociame.firebaseio.com/users/JohnSmith/planner"); | |
planner.on('value', function(snapshot) { | |
document.getElementById("title").innerHTML(snapshot.value().name); | |
} | |
</script> | |
</head> | |
<body> | |
<p id="title">test</p> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment