Last active
October 28, 2015 05:27
-
-
Save a-know/d6d9e1f77759ba679e66 to your computer and use it in GitHub Desktop.
Firebase Tutorial
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
<!doctype html> | |
<html> | |
<head> | |
<script src='https://cdn.firebase.com/js/client/2.2.1/firebase.js'></script> | |
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'></script> | |
<link rel='stylesheet' type='text/css' href='/resources/tutorial/css/example.css'> | |
</head> | |
<body> | |
<div id='messagesDiv'></div> | |
<input type='text' id='nameInput' placeholder='Name'> | |
<input type='text' id='messageInput' placeholder='Message'> | |
<script> | |
var myDataRef = new Firebase('https://a-know-tutorial.firebaseIO.com/'); | |
$('#messageInput').keypress(function (e) { | |
if (e.keyCode == 13) { | |
var name = $('#nameInput').val(); | |
var text = $('#messageInput').val(); | |
myDataRef.push({name: name, text: text}); | |
$('#messageInput').val(''); | |
} | |
}); | |
myDataRef.on('child_added', function(snapshot) { | |
var message = snapshot.val(); | |
displayChatMessage(message.name, message.text); | |
}); | |
function displayChatMessage(name, text) { | |
$('<div/>').text(text).prepend($('<em/>').text(name+': ')).appendTo($('#messagesDiv')); | |
$('#messagesDiv')[0].scrollTop = $('#messagesDiv')[0].scrollHeight; | |
}; | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment