I am trying to follow the tutorial on designing a database in firebase, but I am getting the following error in the JavaScript console:
Uncaught ReferenceError: Firebase is not defined
Here is the link to the tutorial, and the code snippet that I was trying to run in the JavaScript console is: https://www.firebase.com/blog/2014-11-04-firebase-realtime-queries.html
JavaScript
x
5
1
var ref = new Firebase("https://dinosaur-facts.firebaseio.com/dinosaurs");
2
ref.orderByChild("height").on("child_added", function(snapshot) {
3
console.log(snapshot.key() + " was " + snapshot.val().height + " meters tall");
4
});
5
Advertisement
Answer
In the heading, include the following:
JavaScript
1
4
1
<head>
2
<script src='https://cdn.firebase.com/js/client/2.2.1/firebase.js'></script>
3
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'></script>
4
</head>
That’ll solve the problem.