Friday, May 10, 2024
 Popular · Latest · Hot · Upcoming
106
rated 0 times [  111] [ 5]  / answers: 1 / hits: 157611  / 8 Years ago, sat, january 23, 2016, 12:00:00

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



var ref = new Firebase(https://dinosaur-facts.firebaseio.com/dinosaurs);
ref.orderByChild(height).on(child_added, function(snapshot) {
console.log(snapshot.key() + was + snapshot.val().height + meters tall);
});

More From » firebase

 Answers
144

In the heading, include the following:




<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>
</head>




That'll solve the problem.


[#63583] Friday, January 22, 2016, 8 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
lailab

Total Points: 706
Total Questions: 102
Total Answers: 95

Location: Falkland Islands
Member since Mon, Jul 13, 2020
4 Years ago
;