Looking at getting a current website site am working on fully HTML5 validated using W3C
This is the Google map API Javascript tag that is failing to validate.
<script src="http://maps.googleapis.com/maps/api/js?libraries=places&sensor=false"></script>
This is the response from W3C
& did not start a character reference. (& probably should have been escaped as &.)
It does not like the &
when defining if the sensor is true or false.
I have tried the following
<script src="http://maps.googleapis.com/maps/api/js?libraries=places&sensor=false"></script>
When running the page i get a Error from the API explaining i have not used &sensor and it needs to be set to true or false.
Anyone have any ideas how to overcome this please.
Thanks in advance.