Uncaught ReferenceError: jQuery is not defined [duplicate]

This question already has answers here: Uncaught ReferenceError: $ is not defined? (40 answers) Closed 5 years ago. I have implemented some JavaScript on my site but I keep getting the following error messages: Uncaught ReferenceError: jQuery is not defined and Uncaught SyntaxError: Unexpected token < This is the JavaScript that I am using in … Read more

Creating multiline strings in JavaScript

Update: ECMAScript 6 (ES6) introduces a new type of literal, namely template literals. They have many features, variable interpolation among others, but most importantly for this question, they can be multiline. A template literal is delimited by backticks: (Note: I’m not advocating to use HTML in strings) Browser support is OK, but you can use … Read more

How to get all place details from a Place Details Request using Google Places API Web Service?

The phone number is missing in the Google Places API because Google Maps doesn’t have a phone number for that particular place. If you request the details for a place with a phone number on Google Maps, it will be returned. Take a closer look at ChIJ8UadyjeuEmsRDt5QbiDg720. It’s an office building called “Workplace 6” — notice … Read more