$(document).on('geotwp_ajax_success', function(e, data) { if( typeof data.geo != 'undefined') { // create a custom cookie with zip value and 999 days duration GeotCreateCookie('geot_switcher', data.geo.city.data.zip, 999); // Add a marker in a custom google map if( data.geo.geolocation.data.latitude && data.geo.geolocation.data.longitude && jQuery('#geot-map').length != 0 ) { var stanton = {lat: parseFloat(data.geo.geolocation.data.latitude), lng: parseFloat(data.geo.geolocation.data.longitude)}; add_marker(stanton); } } });