grecaptcha.ready(function() {
// do request for recaptcha token
// response is promise with passed token
grecaptcha.execute('6Le686sZAAAAAPSnvPziKUCxopXeNzJKfiaA90t7', {action:'validate_captcha'})
.then(function(token) {
// add token value to form
document.getElementById('g-recaptcha-response').value = token;
});
});
$('#contact-form').submit(function(e){
e.preventDefault();
$('.output').html('').slideUp();
$('.error').html('').slideUp();
var form = $('#contact-form');
$.ajax({
url: '/send-message.php',
type: "POST",
data: form.serialize(),
success: function(data) {
if (data == "true") {
$('.output').html('Thank you for your enquiry, we will be in touch shortly.').slideDown().delay(1200).slideUp();
form[0].reset();
}
},
error: function(data) {
$('.error').html('We were unable to send your message, please try again.').slideDown();
}
});
});
var map = new google.maps.Map(document.getElementById('map'),{
center: {
lat: -33.972244,
lng: 22.463760
},
options: {
draggable: false,
scrollwheel: false
},
zoom: 16
});
var marker = new google.maps.Marker({
map: map,
icon: '/images/marker.png',
place: {
location: {lat: -33.972244, lng: 22.463760},
query: 'Contact - Building and Lifestyle Hub'
},
title: 'Contact - Building and Lifestyle Hub'
});
var infoWindow = new google.maps.InfoWindow({
content: '